configure.ac: Add missing shell quoting
Fixes "./configure[4896]: test: argument expected" on stderr.
This commit is contained in:
parent
822e51009e
commit
6043554c38
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ dnl To make configuring easier, check for a locally built PCRE using the Tools/p
|
|||
if test x"${with_pcre}" = xyes ; then
|
||||
AC_MSG_CHECKING([whether to use local PCRE2])
|
||||
local_pcre_config=no
|
||||
if test -z $PCRE2_CONFIG; then
|
||||
if test -z "$PCRE2_CONFIG"; then
|
||||
if test -f `pwd`/pcre/pcre-swig-install/bin/pcre2-config; then
|
||||
PCRE2_CONFIG=`pwd`/pcre/pcre-swig-install/bin/pcre2-config
|
||||
local_pcre_config=$PCRE2_CONFIG
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue