From: Martin Kraemer Date: Mon, 29 May 2006 07:48:19 +0000 (+0000) Subject: The syntax ">&/dev/null" is csh-style, not bourne-style shell. X-Git-Tag: 2.3.0~2376 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59c89a3b4923acda55b568e70ca2257ee989cc89;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/configure.in b/configure.in index 807adc67ce4..5bdaa13ee22 100644 --- a/configure.in +++ b/configure.in @@ -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 ;;