* aclocal.m4 (V5_SET_TOPDIR): When determining the location of the
top of the source tree, stop when reach the top and aclocal.m4
file is located instead of continuing up and out of the tree.
ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14893
dc483132-0cff-0310-8789-
dd5450dbe970
+2002-09-23 Ezra Peisach <epeisach@bu.edu>
+
+ * aclocal.m4 (V5_SET_TOPDIR): When determining the location of the
+ top of the source tree, stop when reach the top and aclocal.m4
+ file is located instead of continuing up and out of the tree.
+
2002-09-19 Ezra Peisach <epeisach@bu.edu>
* aclocal.m4: Put V5_OUTPUT_MAKEFILE back - still in use. Needs to
],[
ac_reltopdir=
for x in . .. ../.. ../../.. ../../../..; do
- if test -r $srcdir/$x/aclocal.m4; then
+ if test "x$ac_reltopdir" = "x" -a -r "$srcdir/$x/aclocal.m4" ; then
ac_reltopdir=$x
fi
done