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

git version control git at videolan.org
Mon Sep 7 13:50:11 CEST 2009


vlc | branch: master | Barry Wardell <barry.wardell at gmail.com> | Mon Sep  7 12:30:13 2009 +0100| [81f10bb95f32c1d263beb30a1bbfbcdffbeea999] | 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=81f10bb95f32c1d263beb30a1bbfbcdffbeea999
---

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

diff --git a/extras/contrib/bootstrap b/extras/contrib/bootstrap
index 3223939..f6d3769 100755
--- a/extras/contrib/bootstrap
+++ b/extras/contrib/bootstrap
@@ -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
     ;;




More information about the vlc-devel mailing list