You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@apache.org on 2006/05/29 10:37:44 UTC

svn commit: r410054 - /httpd/httpd/branches/2.2.x/configure.in

Author: martin
Date: Mon May 29 01:37:43 2006
New Revision: 410054

URL: http://svn.apache.org/viewvc?rev=410054&view=rev
Log:
The syntax ">&/dev/null" is csh-style, not bourne-style shell syntax.
Change it so that all bourne-style shells understand it.

Modified:
    httpd/httpd/branches/2.2.x/configure.in

Modified: httpd/httpd/branches/2.2.x/configure.in
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/configure.in?rev=410054&r1=410053&r2=410054&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/configure.in (original)
+++ httpd/httpd/branches/2.2.x/configure.in Mon May 29 01:37:43 2006
@@ -147,7 +147,7 @@
        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
      ;;