mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 04:05:43 +01:00
alsaconf fix: cannot find the snd-powerpc module
The expression used in the search does not match. See: bug#2179
This commit is contained in:
parent
e32785dd55
commit
db59693a9f
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue