Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 95480 invoked by uid 500); 9 Feb 2002 00:04:51 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 95465 invoked from network); 9 Feb 2002 00:04:51 -0000 Date: 9 Feb 2002 00:04:50 -0000 Message-ID: <20020209000450.32227.qmail@icarus.apache.org> From: gstein@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/build find_apr.m4 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N gstein 02/02/08 16:04:50 Modified: build find_apr.m4 Log: Fix how we do "and" tests. Revision Changes Path 1.9 +1 -1 apr/build/find_apr.m4 Index: find_apr.m4 =================================================================== RCS file: /home/cvs/apr/build/find_apr.m4,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- find_apr.m4 7 Feb 2002 00:38:18 -0000 1.8 +++ find_apr.m4 9 Feb 2002 00:04:50 -0000 1.9 @@ -82,7 +82,7 @@ if test -n "$1"; then apr_temp_abs_srcdir="`cd $1 && pwd`" if test "$apr_found" = "yes" \ - -a "`$apr_config --srcdir`" = "$apr_temp_abs_srcdir"; then + && test "`$apr_config --srcdir`" = "$apr_temp_abs_srcdir"; then dnl the installed apr-config represents our source directory, so dnl pretend we didn't see it and just use our bundled source apr_found="no"