From 930daac006ae1744f5b2ee56a875bf96ac02a67d Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Thu, 4 Oct 2012 14:22:04 +0000 Subject: [PATCH] IOQ3 commit 2250 --- reaction/make-macosx-ub.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reaction/make-macosx-ub.sh b/reaction/make-macosx-ub.sh index 71ec6f49..4c9c71f3 100755 --- a/reaction/make-macosx-ub.sh +++ b/reaction/make-macosx-ub.sh @@ -116,13 +116,13 @@ NCPU=`sysctl -n hw.ncpu` if [ -d build/release-release-ppc ]; then rm -r build/release-darwin-ppc fi -(ARCH=ppc CFLAGS=$PPC_CFLAGS LDFLAGS=$PPC_LDFLAGS make -j$NCPU) || exit 1; +(ARCH=ppc CC=gcc-4.0 CFLAGS=$PPC_CFLAGS LDFLAGS=$PPC_LDFLAGS make -j$NCPU) || exit 1; # intel client and server if [ -d build/release-darwin-i386 ]; then rm -r build/release-darwin-i386 fi -(ARCH=i386 CFLAGS=$X86_CFLAGS LDFLAGS=$X86_LDFLAGS make -j$NCPU) || exit 1; +(ARCH=i386 CC=gcc-4.0 CFLAGS=$X86_CFLAGS LDFLAGS=$X86_LDFLAGS make -j$NCPU) || exit 1; echo "Creating .app bundle $DESTDIR/$APPBUNDLE" if [ ! -d $DESTDIR/$APPBUNDLE/Contents/MacOS/$BASEDIR ]; then