From 21d5bed81f9942bae8ef5bfa3cc0ab3873a3e9c6 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Mon, 13 Mar 2006 19:40:25 +0000 Subject: [PATCH] Minor clean up of bashism Minor clean up of bashism, replaced with normal test. --- alsaconf/alsaconf.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alsaconf/alsaconf.in b/alsaconf/alsaconf.in index d958785..0eed914 100644 --- a/alsaconf/alsaconf.in +++ b/alsaconf/alsaconf.in @@ -71,7 +71,7 @@ fi for prog in lspci lsmod; do for path in /sbin /usr/sbin /bin /usr/bin;do - [[ -x $path/$prog ]] && eval $prog=$path/$prog + test -x $path/$prog && eval $prog=$path/$prog done done unset prog path