Skip to content

Commit

Permalink
Use @CMAKE_MAKE_PROGRAM@ instead of make in buildtests.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
chhtz committed Feb 28, 2015
1 parent 82cb59f commit fc67859
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/buildtests.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ targets_to_make=`echo "$TESTSLIST" | egrep "$1" | xargs echo`

if [ -n "${EIGEN_MAKE_ARGS:+x}" ]
then
make $targets_to_make ${EIGEN_MAKE_ARGS}
@CMAKE_MAKE_PROGRAM@ $targets_to_make ${EIGEN_MAKE_ARGS}
else
make $targets_to_make
@CMAKE_MAKE_PROGRAM@ $targets_to_make @EIGEN_TEST_BUILD_FLAGS@
fi
exit $?

0 comments on commit fc67859

Please sign in to comment.