Skip to content
Snippets Groups Projects
Commit 73dd95e7 authored by Christoph Hertzberg's avatar Christoph Hertzberg
Browse files

Use @CMAKE_MAKE_PROGRAM@ instead of make in buildtests.sh

parent 682196e9
No related branches found
No related tags found
No related merge requests found
......@@ -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% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment