# HG changeset patch # User Matti Hamalainen # Date 1213588431 -10800 # Node ID 8a109bf467b2c8fef8e328a7cb36b63ea45fb03c # Parent 31a4cc265f31ab837947e5967f225f92d9c7701d Use proper quotation. diff -r 31a4cc265f31 -r 8a109bf467b2 configure.ac --- 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.]) ])