diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-06 07:43:11 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-06 07:43:11 +0200 |
commit | 1501fcaf7be0eb7466b7e86fd05e17632d6e0f9e (patch) | |
tree | 55ca372900facbb490c14c7349ebce74fa4096c8 /m4/libodb-oracle.m4 | |
parent | 305c53d41c0e447623880e5636fd00986117ee1a (diff) |
Fix incorrect AC_LANG_SOURCE quoting
Thanks to Hugo Mildenberger <Hugo.Mildenberger@web.de> for the patch.
Diffstat (limited to 'm4/libodb-oracle.m4')
-rw-r--r-- | m4/libodb-oracle.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/libodb-oracle.m4 b/m4/libodb-oracle.m4 index 2b85a83..6302368 100644 --- a/m4/libodb-oracle.m4 +++ b/m4/libodb-oracle.m4 @@ -32,8 +32,8 @@ fi save_LIBS="$LIBS" LIBS="-lodb-oracle $LIBS" -CXX_LIBTOOL_LINK_IFELSE( -AC_LANG_SOURCE([[ +CXX_LIBTOOL_LINK_IFELSE([ +AC_LANG_SOURCE([ #include <odb/oracle/exceptions.hxx> void @@ -61,7 +61,7 @@ main () const char* m (g ()); return m != 0; } -]]), +])], [libodb_oracle_found=yes]) if test x"$libodb_oracle_found" = xno; then |