From a6df1b36c23f1d9f413be588d8360bcc149a5250 Mon Sep 17 00:00:00 2001 From: Tonya Souther Date: Fri, 16 Nov 2012 14:25:21 -0600 Subject: [PATCH] FIRE-8231: Fix compiling on Mountain Lion (OS X 10.8). Found by Shin Wasp. --- scripts/configure_firestorm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/configure_firestorm.sh b/scripts/configure_firestorm.sh index c52dc9113c..cd7c5a41f8 100755 --- a/scripts/configure_firestorm.sh +++ b/scripts/configure_firestorm.sh @@ -371,7 +371,7 @@ fi if [ $WANTS_BUILD -eq $TRUE ] ; then echo "Building $PLATFORM..." if [ $PLATFORM == "darwin" ] ; then - if [ $OSTYPE == "darwin11" ] ; then + if [ $OSTYPE == "darwin11" -o $OSTYPE == "darwin12" ] ; then xcodebuild -configuration $BTYPE -project Firestorm.xcodeproj GCC_OPTIMIZATION_LEVEL=3 GCC_ENABLE_SSE3_EXTENSIONS=YES 2>&1 | tee -a $LOG else xcodebuild -configuration $BTYPE -project Firestorm.xcodeproj GCC_VERSION=4.2 GCC_OPTIMIZATION_LEVEL=3 GCC_ENABLE_SSE3_EXTENSIONS=YES 2>&1 | tee -a $LOG