You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2016/12/12 17:40:59 UTC

svn commit: r1773839 - /httpd/httpd/trunk/configure.in

Author: wrowe
Date: Mon Dec 12 17:40:59 2016
New Revision: 1773839

URL: http://svn.apache.org/viewvc?rev=1773839&view=rev
Log:
Resolve shell syntax error noted by jim, tested against pcre8/pcre2-10

Modified:
    httpd/httpd/trunk/configure.in

Modified: httpd/httpd/trunk/configure.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/configure.in?rev=1773839&r1=1773838&r2=1773839&view=diff
==============================================================================
--- httpd/httpd/trunk/configure.in (original)
+++ httpd/httpd/trunk/configure.in Mon Dec 12 17:40:59 2016
@@ -222,11 +222,10 @@ fi
 
 AC_ARG_WITH(pcre,
 APACHE_HELP_STRING(--with-pcre=PATH,Use external PCRE library))
-
-if test "$with_pcre" = "" || test "$with_pcre" = "yes"; then
-  with_pcre = "$PATH"
+if test "x$with_pcre" = "x" || test "$with_pcre" = "yes"; then
+  with_pcre="$PATH"
 else
-  with_pcre = "$with_pcre/bin:$with_pcre"
+  with_pcre="$with_pcre/bin:$with_pcre"
 fi
 
 AC_CHECK_TARGET_TOOLS(PCRE_CONFIG, [pcre2-config pcre-config],