Commit fb2ef804 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

Resolve shell syntax error noted by jim, tested against pcre8/pcre2-10

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1773839 13f79535-47bb-0310-9956-ffa450edef68
parent e6ec078c
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -222,8 +222,7 @@ fi

AC_ARG_WITH(pcre,
APACHE_HELP_STRING(--with-pcre=PATH,Use external PCRE library))

if test "$with_pcre" = "" || test "$with_pcre" = "yes"; then
if test "x$with_pcre" = "x" || test "$with_pcre" = "yes"; then
  with_pcre="$PATH"
else
  with_pcre="$with_pcre/bin:$with_pcre"