aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-06 07:43:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-06 07:43:11 +0200
commitea8f088d1e80bff9bcf21341c4e794a61b9a6e67 (patch)
tree99964b104729c952c4754c1882095f0be44dbada /m4
parent4d590b73f5b5d70825155e2aeb7cd228d09a8f41 (diff)
Fix incorrect AC_LANG_SOURCE quoting
Thanks to Hugo Mildenberger <Hugo.Mildenberger@web.de> for the patch.
Diffstat (limited to 'm4')
-rw-r--r--m4/libcutl.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/libcutl.m4 b/m4/libcutl.m4
index a94f4d5..1c7b692 100644
--- a/m4/libcutl.m4
+++ b/m4/libcutl.m4
@@ -31,8 +31,8 @@ fi
save_LIBS="$LIBS"
LIBS="-lcutl $LIBS"
-CXX_LIBTOOL_LINK_IFELSE(
-AC_LANG_SOURCE([[
+CXX_LIBTOOL_LINK_IFELSE([
+AC_LANG_SOURCE([
#include <cutl/exception.hxx>
void
@@ -60,7 +60,7 @@ main ()
const char* m (g ());
return m != 0;
}
-]]),
+])],
[libcutl_found=yes])
if test x"$libcutl_found" = xno; then