]> Pileus Git - ~andy/fetchmail/commitdiff
Fix opie.h error handling.
authorMatthias Andree <matthias.andree@gmx.de>
Tue, 17 May 2011 16:46:22 +0000 (18:46 +0200)
committerMatthias Andree <matthias.andree@gmx.de>
Tue, 17 May 2011 17:53:03 +0000 (19:53 +0200)
Properly quote AC_MSG_ERROR argument.

configure.ac

index ae1db50bbad3881065b7bb86195726ed4821c3c9..533f239ace8bdb894dfa4fbd56eff626ef22ef57 100644 (file)
@@ -458,8 +458,8 @@ AC_CACHE_SAVE
 ###    use option --enable-opie to compile in the OPIE support
 AC_ARG_ENABLE(opie,
        [  --enable-opie           support OTP through the OPIE library],
-       [ AC_CHECK_HEADER(opie.h,, [AC_MSG_ERROR(cannot find <opie.h>, which is required for OPIE support.)])
-          AC_CHECK_LIB(opie,opiegenerator,, [AC_MSG_ERROR(cannot find libopie, which is required for OPIE support.)])
+       [ AC_CHECK_HEADER(opie.h,, [AC_MSG_ERROR([cannot find <opie.h>, which is required for OPIE support.])])
+          AC_CHECK_LIB(opie,opiegenerator,, [AC_MSG_ERROR([cannot find libopie, which is required for OPIE support.])])
           with_opie=$enableval],
        [with_opie=no])
 test "$with_opie" = "yes" && AC_DEFINE(OPIE_ENABLE,1,Define if you want OPIE support compiled in)