1
0
Fork 0

Don’t need MAKEOPTIONS

- we already set official MAKEFLAGs on the Jenkins slave.
This commit is contained in:
James Turner 2015-12-08 18:55:37 +00:00
parent 0c36cc3eef
commit 5b1b01bb0f

View file

@ -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"