mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
configure.in: don't rely on test -a, not all shells support it
Notably, /bin/sh in older Debian and Ubuntu is dash, which doesn't. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
443c105737
commit
5cfa03d2f3
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ if test "$versioned" = "yes"; then
|
|||
major=`echo $xres | cut -d . -f 1`
|
||||
minor=`echo $xres | cut -d . -f 2`
|
||||
pass=0
|
||||
if test $major -eq 1 -a $minor -gt 3; then
|
||||
if test $major -eq 1 && test $minor -gt 3; then
|
||||
pass=1
|
||||
else
|
||||
if test $major -gt 1; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue