]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix logic error in providing a nice failure message for a missing expat-lite
authorGreg Stein <gstein@apache.org>
Fri, 5 Oct 2001 07:52:10 +0000 (07:52 +0000)
committerGreg Stein <gstein@apache.org>
Fri, 5 Oct 2001 07:52:10 +0000 (07:52 +0000)
directory. No real configuration changes/effects.

Submitted by: Jim Jagielski <jim@jaguNET.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91308 13f79535-47bb-0310-9956-ffa450edef68

src/Configure

index 83c37f2cf628fe88c4adff844e2b5c5dfd23e0f2..9afd5ba3bcdbab4070d983b2c1a30bc04bcd5ab8 100755 (executable)
@@ -1857,7 +1857,7 @@ if [ "x$RULE_EXPAT" = "xyes" ]; then
         echo " + using system Expat"
         LIBS="$LIBS -lexpat"
     else
-        if [ "$xRULE_EXPAT" = "xyes" ]; then
+        if [ ! -d ./lib/expat-lite/ ]; then
             echo "ERROR: RULE_EXPAT set to \"yes\" but is not available."
            exit 1
         fi