From 59c89a3b4923acda55b568e70ca2257ee989cc89 Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Mon, 29 May 2006 07:48:19 +0000 Subject: [PATCH] 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 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 807adc67ce..5bdaa13ee2 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 ;; -- 2.40.0