]> git.sesse.net Git - vlc/commitdiff
contrib: Fix check for OSX Snow Leopard.
authorBarry Wardell <barry.wardell@gmail.com>
Mon, 7 Sep 2009 11:30:13 +0000 (12:30 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Mon, 7 Sep 2009 11:50:10 +0000 (13:50 +0200)
Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
extras/contrib/bootstrap

index 322393969d61f877ce14cb16d2928020b9c029ad..f6d37692fdbf031a6379f44767ae357d3cf1351b 100755 (executable)
@@ -162,7 +162,7 @@ case $HOST in
             echo "ERROR:\nYour Developer Tools' SDKs were not found.\nYou need to add extra symbolic links to /Developer to achieve correctly\nbuilt contribs.\nHave a look at the OSX-Compile-HOWTO for details." >&2
             exit 1
         fi
-        if test $HOST="i686-apple-darwin10"; then
+        if test $HOST = "i686-apple-darwin10"; then
             echo "HAVE_DARWIN_10 = 1" >> config.mak
         fi
     ;;
@@ -192,7 +192,7 @@ case $HOST in
             echo "ERROR:\nYour Developer Tools' SDKs were not found.\nYou need to add extra symbolic links to /Developer to achieve correctly\nbuilt contribs.\nHave a look at the OSX-Compile-HOWTO for details." >&2
             exit 1
         fi
-        if test $HOST="x86_64-apple-darwin10"; then
+        if test $HOST = "x86_64-apple-darwin10"; then
             echo "HAVE_DARWIN_10 = 1" >> config.mak
         fi
     ;;