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

[dunecontrol] Warn less pushy that build directory is not set.

The warning was spilled out for every module for every command,
even for update.
The build directory is announced by CMake's configure anyway.
Now it is printed for make, too.
parent e3554ac2
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,6 @@ load_opts() {
if test "x$USE_CMAKE" != "xno"; then
if test -z "$BUILDDIR"; then
echo "No build directory provided. Defaulting to the sub directory build-cmake"
export BUILDDIR=build-cmake
fi
fi
......@@ -722,6 +721,7 @@ run_default_configure () {
run_default_make () {
test ! -d "$ABS_BUILDDIR" || cd "$ABS_BUILDDIR"
PARAMS="$CMD_FLAGS"
echo "build directory: $BUILDDIR"
echo make "$PARAMS"
eval $MAKE "$PARAMS"
}
......
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