diff options
author | Jaroslav Kysela <perex@perex.cz> | 2006-10-01 15:11:10 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2006-10-01 15:11:10 +0200 |
commit | db59693a9fb238cccb492096abff2982f8742a96 (patch) | |
tree | 7980c86694a4f78012b9dbdb90b69311c4cc6608 /alsaconf | |
parent | e32785dd5563649de96d3e4c7e9705e7af8c7493 (diff) | |
download | alsa-utils-db59693a9fb238cccb492096abff2982f8742a96.tar.gz |
alsaconf fix: cannot find the snd-powerpc module
The expression used in the search does not match.
See: bug#2179
Diffstat (limited to 'alsaconf')
-rw-r--r-- | alsaconf/alsaconf.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alsaconf/alsaconf.in b/alsaconf/alsaconf.in index 54df91a..82d4731 100644 --- a/alsaconf/alsaconf.in +++ b/alsaconf/alsaconf.in @@ -697,7 +697,7 @@ BEGIN { # if grep -q MacRISC $PROCFS/cpuinfo; then MODDIR=/lib/modules/`uname -r` - find $MODDIR -name 'snd-powermac' -print | \ + find $MODDIR -name 'snd-powermac*' -print | \ while read i; do i=${i##*/} i=${i%%.o} |