Skip to content
Snippets Groups Projects
Commit 5dc6c044 authored by Christian Engwer's avatar Christian Engwer
Browse files

[dunecontrol] fix bug in the cmake branch of dunecontrol builddir handling

sadly the touchpad added some arbitrary "pwd; ", which slipped my
test, as I don't use cmake. Thanks to Andi Buhr for pointing this out.
parent 807e48b6
No related branches found
No related tags found
No related merge requests found
......@@ -684,7 +684,7 @@ run_default_configure () {
# create build directory if requested
test -d "$ABS_BUILDDIR" || mkdir -p "$ABS_BUILDDIR"
SRCDIR="$PWD"
cd "$pwd; ABS_BUILDDIR"
cd "$ABS_BUILDDIR"
echo "$PREPARAMS $CMAKE -DCMAKE_MODULE_PATH=\"$CMAKE_MODULE_PATH\" $CMAKE_PARAMS $CMAKE_FLAGS \"$SRCDIR\""
eval $PREPARAMS $CMAKE "-DCMAKE_MODULE_PATH=\"$CMAKE_MODULE_PATH\" $CMAKE_PARAMS $CMAKE_FLAGS \"$SRCDIR\"" || exit 1
else
......
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