From 250ff9c0c8370647541bf97d5fad2f88a388c305 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 12 Dec 2016 17:40:59 +0000 Subject: 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 --- configure.in | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 6d75d6dac3..659f6e61dc 100644 --- a/configure.in +++ b/configure.in @@ -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], -- cgit v1.2.1