diff options
author | 2005-11-08 18:22:45 +0000 | |
---|---|---|
committer | 2005-11-08 18:22:45 +0000 | |
commit | 310745fbd6f9469f130c7d509f232b7e7cb59efc (patch) | |
tree | 23a09d706492fbc10e50b9d0406f7a0f43d379c6 /media-sound/aumix/files | |
parent | Removed explicit dependencies on libc and wget since these two are in the sys... (diff) | |
download | historical-310745fbd6f9469f130c7d509f232b7e7cb59efc.tar.gz historical-310745fbd6f9469f130c7d509f232b7e7cb59efc.tar.bz2 historical-310745fbd6f9469f130c7d509f232b7e7cb59efc.zip |
Fixed missing -E option to grep. Closes bug #84412.
Package-Manager: portage-2.0.53_rc7
Diffstat (limited to 'media-sound/aumix/files')
-rw-r--r-- | media-sound/aumix/files/aumix.rc6 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/media-sound/aumix/files/aumix.rc6 b/media-sound/aumix/files/aumix.rc6 index 21430103ec8a..11562dc47eb7 100644 --- a/media-sound/aumix/files/aumix.rc6 +++ b/media-sound/aumix/files/aumix.rc6 @@ -1,15 +1,14 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/files/aumix.rc6,v 1.10 2005/07/07 19:36:39 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/files/aumix.rc6,v 1.11 2005/11/08 18:22:45 eradicator Exp $ depend() { use modules hotplug coldplug alsasound } checkconfig() { - if ! grep -q 'sound|OSS|sparcaudio' /proc/devices && [[ ! -d /proc/asound ]] - then + if ! grep -q -E 'sound|OSS|sparcaudio' /proc/devices && [[ ! -d /proc/asound ]] ; then eerror "Sound support has not been compiled into the kernel," eerror "or is disabled. Please check that the correct modules" eerror "is loaded." |