diff options
author | Chow Loong Jin <hyperair@ubuntu.com> | 2010-04-02 03:29:45 +0800 |
---|---|---|
committer | Bertrand Lorentz <bertrand.lorentz@gmail.com> | 2010-04-02 14:36:37 +0200 |
commit | 9a3f1c2a2c6b9dee8f95fb5242f80b4dc2c0068b (patch) | |
tree | af7b22abb35fc359da3d67650d2d86975df8d8e9 /build/m4 | |
parent | 2909932bf62be371a20413f85f8ed5a627a4c037 (diff) |
[build] Use [[ and ]] for condition in dap-ipod.m4
[ and ] are clobbered by m4 expansion, and so configure complains about
a missing "-r" command during the ipod check.
Diffstat (limited to 'build/m4')
-rw-r--r-- | build/m4/banshee/dap-ipod.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/m4/banshee/dap-ipod.m4 b/build/m4/banshee/dap-ipod.m4 index a83e4c0b1..ccc089408 100644 --- a/build/m4/banshee/dap-ipod.m4 +++ b/build/m4/banshee/dap-ipod.m4 @@ -19,7 +19,7 @@ AC_DEFUN([BANSHEE_CHECK_DAP_IPOD], asms="`$PKG_CONFIG --variable=Libraries ipod-sharp` `$PKG_CONFIG --variable=Libraries ipod-sharp-ui`" for asm in $asms; do IPODSHARP_ASSEMBLIES="$IPODSHARP_ASSEMBLIES $asm" - [ -r "$asm.mdb" ] && IPODSHARP_ASSEMBLIES="$IPODSHARP_ASSEMBLIES $asm.mdb" + [[ -r "$asm.mdb" ]] && IPODSHARP_ASSEMBLIES="$IPODSHARP_ASSEMBLIES $asm.mdb" done AC_SUBST(IPODSHARP_ASSEMBLIES) AC_SUBST(IPODSHARP_LIBS) |