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