build: fix bashism in hostenv.sh
authorJo-Philipp Wich <jow@openwrt.org>
Wed, 16 Feb 2011 19:57:39 +0000 (19:57 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Wed, 16 Feb 2011 19:57:39 +0000 (19:57 +0000)
build/hostenv.sh

index ad5a71e..0f2fc27 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 export LD_LIBRARY_PATH="$1/usr/lib:$LD_LIBRARY_PATH"
 #!/bin/sh
 export LD_LIBRARY_PATH="$1/usr/lib:$LD_LIBRARY_PATH"
-[ `uname -s` == "Darwin" ] && export DYLD_LIBRARY_PATH="$1/usr/lib:$DYLD_LIBRARY_PATH"
+[ `uname -s` = "Darwin" ] && export DYLD_LIBRARY_PATH="$1/usr/lib:$DYLD_LIBRARY_PATH"
 export PATH="$1/bin:$1/usr/bin:$PATH"
 export LUA_PATH="$1/$2/?.lua;$1/$2/?/init.lua;;"
 export LUA_CPATH="$1/$3/?.so;;"
 export PATH="$1/bin:$1/usr/bin:$PATH"
 export LUA_PATH="$1/$2/?.lua;$1/$2/?/init.lua;;"
 export LUA_CPATH="$1/$3/?.so;;"