You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2007/12/18 23:04:20 UTC

svn commit: r605338 - /httpd/mod_ftp/trunk/configure.apxs

Author: wrowe
Date: Tue Dec 18 14:04:19 2007
New Revision: 605338

URL: http://svn.apache.org/viewvc?rev=605338&view=rev
Log:
Fix nonportable test == operator

Reported by: Niklas Edmundsson <nikke acc.umu.se>

Modified:
    httpd/mod_ftp/trunk/configure.apxs

Modified: httpd/mod_ftp/trunk/configure.apxs
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/configure.apxs?rev=605338&r1=605337&r2=605338&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/configure.apxs (original)
+++ httpd/mod_ftp/trunk/configure.apxs Tue Dec 18 14:04:19 2007
@@ -3,11 +3,11 @@
 #  configure.apxs --- build configuration script for creating mod_ftp
 #  out of tree using the apxs utility and httpd build toolset
 #
-if test "$APXS" == ""; then
+if test "$APXS" = ""; then
   APXS=`which apxs 2>/dev/null`
 fi;
 
-if test "$APXS" == ""; then
+if test "$APXS" = ""; then
   echo $0 must be able to find apxs in your path,
   echo or the environment variable APXS must provide the full path of APXS,
   echo or you may specify it with: