From: Greg Stein Date: Fri, 5 Oct 2001 07:52:10 +0000 (+0000) Subject: Fix logic error in providing a nice failure message for a missing expat-lite X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a741b62e5bb574793bebb3caede029b4afeea0d;p=thirdparty%2Fapache%2Fhttpd.git Fix logic error in providing a nice failure message for a missing expat-lite directory. No real configuration changes/effects. Submitted by: Jim Jagielski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91308 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/Configure b/src/Configure index 83c37f2cf62..9afd5ba3bcd 100755 --- a/src/Configure +++ b/src/Configure @@ -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