[vlc-devel] commit: contrib: Fix check for OSX Snow Leopard. (Barry Wardell )

git version control git at videolan.org
Mon Sep 7 13:51:18 CEST 2009


vlc | branch: 1.0-bugfix | Barry Wardell <barry.wardell at gmail.com> | Mon Sep  7 12:30:13 2009 +0100| [d6f3ac41da77bf61b61c4f867162011333388424] | committer: Felix Paul Kühne 

contrib: Fix check for OSX Snow Leopard.

Signed-off-by: Felix Paul Kühne <fkuehne at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d6f3ac41da77bf61b61c4f867162011333388424
---

 extras/contrib/bootstrap |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/extras/contrib/bootstrap b/extras/contrib/bootstrap
index 94e0887..92f0053 100755
--- a/extras/contrib/bootstrap
+++ b/extras/contrib/bootstrap
@@ -164,7 +164,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
     ;;
@@ -194,7 +194,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
     ;;




More information about the vlc-devel mailing list