Skip to content
Snippets Groups Projects
Commit 645bbf79 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[CMake] Check for $CMAKE outside opts file.

CMAKE is nom handled similar to MAKE.
CMAKE is no longer evaluated in the opts file as this would overwrite
a CMAKE set by the dunecontrol call.
This fixes FS#1518.
parent 3d5b6664
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,10 @@ if test -z "$MAKE"; then
MAKE=make
fi
if test -z "$CMAKE"; then
CMAKE=cmake
fi
###############################################
###
### read lib
......@@ -177,20 +181,8 @@ load_opts() {
USE_CMAKE="yes"
fi
fi
if test -n "$USE_CMAKE" && test -z "$CMAKE"; then
# We use cmake for building, but CMAKE is not yet set.
# Check the opts file for it
OPTS_FILE_CMAKE="$(eval CMAKE=""; . $DUNE_OPTS_FILE; eval echo \$CMAKE)"
if test -n "$OPTS_FILE_CMAKE"; then
CMAKE="$OPTS_FILE_CMAKE"
fi
fi
fi
fi
if test -n "$USE_CMAKE" && test -z "$CMAKE"; then
# fall back to system cmake
CMAKE=cmake
fi
if test "x$DUNE_OPTS_FILE" != "x"; then
if test "$command" = "configure"; then
CMAKE_FLAGS="$(. $DUNE_OPTS_FILE; eval echo \$CMAKE_FLAGS)"
......
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