Skip to content
Snippets Groups Projects
Commit 7e245885 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

bug fix, LDFLAGS might contain slashes.

[[Imported from SVN: r6414]]
parent 0dad5eb5
No related branches found
No related tags found
No related merge requests found
......@@ -398,7 +398,7 @@ AC_DEFUN([DUNE_CHECK_MODULES],[
ac_save_CXX="$CXX"
# Use $CXX $DUNE_LDFLAGS as link command, as the latter might
# contain the -static option to force static linkage
ac_cxx_ld=`echo $ac_save_CXX | sed "s/$CXX/$CXX $DUNE_LDFLAGS/"`
ac_cxx_ld=`echo $ac_save_CXX | sed -e "s@$CXX@$CXX $DUNE_LDFLAGS@"`
HAVE_[]_DUNE_MODULE=0
......
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