From a4f80bafce4e82c9a7cc364c475bcbf794e7331b Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sun, 24 Mar 2013 17:06:29 -0700 Subject: [PATCH] build-support: fix macosx check for XCode warning. --- build-support/factor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-support/factor.sh b/build-support/factor.sh index 4c0fdc5af1..048f42a112 100755 --- a/build-support/factor.sh +++ b/build-support/factor.sh @@ -52,7 +52,7 @@ ensure_program_installed() { $ECHO -n "any of [ $* ]" fi $ECHO " and try again." - if [[ $OS -eq macosx ]] ; then + if [[ $OS == macosx ]] ; then $ECHO "If you have Xcode 4.3 or higher installed, you must install the" $ECHO "Command Line Tools from Xcode Preferences > Downloads in order" $ECHO "to build Factor."