From 5b1b01bb0f63bf92824d9d7c991639b5f0b5ae42 Mon Sep 17 00:00:00 2001 From: James Turner Date: Tue, 8 Dec 2015 18:55:37 +0000 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20need=20MAKEOPTIONS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - we already set official MAKEFLAGs on the Jenkins slave. --- hudson_mac_build_release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hudson_mac_build_release.sh b/hudson_mac_build_release.sh index 90b35cb..834c468 100755 --- a/hudson_mac_build_release.sh +++ b/hudson_mac_build_release.sh @@ -24,7 +24,7 @@ pushd sgBuild cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo ../simgear # compile -make $MAKEOPTIONS +make if [ $? -ne '0' ]; then echo "make simgear failed" @@ -41,7 +41,7 @@ echo "Starting on FlightGear" pushd fgBuild cmake -DFG_NIGHTLY=1 -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo ../flightgear -make $MAKEOPTIONS +make if [ $? -ne '0' ]; then echo "make flightgear failed"