You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by so...@apache.org on 2005/09/19 20:51:59 UTC

svn commit: r290234 - /httpd/mod_smtpd/trunk/configure.ac

Author: soc-rian
Date: Mon Sep 19 11:51:57 2005
New Revision: 290234

URL: http://svn.apache.org/viewcvs?rev=290234&view=rev
Log:
Only infer location when the string is empty, not otherwise.

Modified:
    httpd/mod_smtpd/trunk/configure.ac

Modified: httpd/mod_smtpd/trunk/configure.ac
URL: http://svn.apache.org/viewcvs/httpd/mod_smtpd/trunk/configure.ac?rev=290234&r1=290233&r2=290234&view=diff
==============================================================================
--- httpd/mod_smtpd/trunk/configure.ac (original)
+++ httpd/mod_smtpd/trunk/configure.ac Mon Sep 19 11:51:57 2005
@@ -34,7 +34,7 @@
 
 	AC_MSG_CHECKING(for libapreq2)
 	
-	if test -s $APREQ2_LOC; then
+	if test ! -s $APREQ2_LOC; then
                 APREQ2_LOC=`$APXS_BIN -q LIBDIR`
         fi