From: Martin Kraemer Date: Mon, 29 May 2006 08:37:43 +0000 (+0000) Subject: The syntax ">&/dev/null" is csh-style, not bourne-style shell syntax. X-Git-Tag: 2.2.3~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b3c1b378a008fb4c985781bb5955b19c7c7d8e8;p=thirdparty%2Fapache%2Fhttpd.git The syntax ">&/dev/null" is csh-style, not bourne-style shell syntax. Change it so that all bourne-style shells understand it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@410054 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 52a2630f996..3a8fce6ef0e 100644 --- a/configure.in +++ b/configure.in @@ -147,7 +147,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 ;;