Commit 81f10bb9 authored by Barry Wardell's avatar Barry Wardell Committed by Felix Paul Kühne

contrib: Fix check for OSX Snow Leopard.

Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent f264e31b
......@@ -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
;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment