changeset 4651:8a109bf467b2

Use proper quotation.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 16 Jun 2008 06:53:51 +0300
parents 31a4cc265f31
children d44ca48fc0b8
files configure.ac
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Mon Jun 16 06:37:18 2008 +0300
+++ b/configure.ac	Mon Jun 16 06:53:51 2008 +0300
@@ -180,13 +180,13 @@
     AUD_CHECK_MODULE([LIBPCRE], [libpcre], [>= 6.7], [PCRE])
     AC_DEFINE([USE_REGEX_PCRE], 1, [If this macro is defined, use PCRE regex library.])
     REGEX_LIBS="-lpcreposix $LIBPCRE_LIBS"
-    REGEX_CFLAGS=$LIBPCRE_CFLAGS
+    REGEX_CFLAGS="$LIBPCRE_CFLAGS"
     ;;
   oniguruma)
     AC_CHECK_LIB([onig], [onig_new],
     [
         AC_DEFINE([USE_REGEX_ONIGURUMA], 1, [If this macro is defined, use Oniguruma regex library.])
-        REGEX_LIBS=['-lonig']
+        REGEX_LIBS="-lonig"
     ],[
         AC_MSG_ERROR([Cannot find Oniguruma regex library.])
     ])