Don’t need MAKEOPTIONS
- we already set official MAKEFLAGs on the Jenkins slave.
This commit is contained in:
parent
0c36cc3eef
commit
5b1b01bb0f
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue