Commit 828f0911 authored by Martin Kraemer's avatar Martin Kraemer
Browse files

The syntax ">&/dev/null" is csh-style, not bourne-style shell.

Change it so that all bourne-style shells understand it.
I am going to make the same fix in 2.2.x


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@410047 13f79535-47bb-0310-9956-ffa450edef68
parent fdb4053a
Loading
Loading
Loading
Loading
+1 −1
Changes for configure.in: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ yes) AC_PATH_PROG(PCRE_CONFIG, pcre-config, false) ;;
       PCRE_CONFIG=$with_pcre
     fi

     if $PCRE_CONFIG --version >&/dev/null; then :; else
     if $PCRE_CONFIG --version >/dev/null 2>&1; then :; else
       AC_MSG_ERROR([Did not find pcre-config script at $PCRE_CONFIG])
     fi
     ;;