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

[autotools] Fixes quoting in test for DUNE symbols

Some modules do test for complicated symbols,
eg. "&StandardMerge<double,1,1,1>::build;", which lead to broken
configure scripts. In the above case :
" 1>build;
  ;"
as a shell command.
This patch quotes the program body used for AC_LANG_PROGRAM correctly
to prevent this.
parent 8edbd926
No related branches found
No related tags found
No related merge requests found
......@@ -438,8 +438,8 @@ AC_DEFUN([DUNE_CHECK_MODULES],[
AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[#]include<dune/[]_dune_header>,
_dune_symbol)],
[[#]include<dune/[]_dune_header>],
[[_dune_symbol]])],
[dune_cv_lib[]_dune_lib=yes],
[dune_cv_lib[]_dune_lib=no])
])
......
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