Skip to content
Snippets Groups Projects
Commit be292f40 authored by Markus Blatt's avatar Markus Blatt
Browse files

Revert "Make finding *.la files non-fatal."

This reverts commit 21dbaefe.
Thus if libtool libs are found, then we abort again.
Please do not merge to the release.
parent 14371eb3
No related branches found
No related tags found
No related merge requests found
......@@ -717,7 +717,8 @@ run_default_configure () {
cd "$ABS_BUILDDIR"
# check for libtool libs, which might break modules depending on this module
test -n "`find . -name \*.la`" && \
echo "Warning: your build directory $ABS_BUILDDIR contains libtool built libraries, please cleanup"
echo "Error: your build directory $ABS_BUILDDIR contains libtool built libraries, please cleanup" && \
exit 1
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