From ea8f088d1e80bff9bcf21341c4e794a61b9a6e67 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 6 Feb 2013 07:43:11 +0200 Subject: Fix incorrect AC_LANG_SOURCE quoting Thanks to Hugo Mildenberger for the patch. --- m4/libcutl.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'm4') 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 void @@ -60,7 +60,7 @@ main () const char* m (g ()); return m != 0; } -]]), +])], [libcutl_found=yes]) if test x"$libcutl_found" = xno; then -- cgit v1.1