Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 37425 invoked by uid 500); 15 Feb 2002 00:19:16 -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 37414 invoked by uid 500); 15 Feb 2002 00:19:16 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 15 Feb 2002 00:19:15 -0000 Message-ID: <20020215001915.79209.qmail@icarus.apache.org> From: jerenkrantz@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/build find_apu.m4 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jerenkrantz 02/02/14 16:19:15 Modified: build find_apu.m4 Log: Check for a directory not a non-empty string. Revision Changes Path 1.3 +1 -1 apr-util/build/find_apu.m4 Index: find_apu.m4 =================================================================== RCS file: /home/cvs/apr-util/build/find_apu.m4,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- find_apu.m4 1 Feb 2002 07:59:32 -0000 1.2 +++ find_apu.m4 15 Feb 2002 00:19:15 -0000 1.3 @@ -127,7 +127,7 @@ dnl We attempt to guess what the data will be *after* configure is run. dnl Note, if we don't see configure, but do have configure.in, it'd be dnl nice to run buildconf, but that's for another day. - if test "$apu_found" = "no" && test -n "$1" && test -x "$1/configure"; then + if test "$apu_found" = "no" && test -d "$1" && test -x "$1/configure"; then apu_found="reconfig" apu_srcdir="$1" if test -n "$2"; then