This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
FYI: fix for pr87.test
- To: <automake at gnu dot org>
- Subject: FYI: fix for pr87.test
- From: Pavel Roskin <proski at gnu dot org>
- Date: Thu, 23 Nov 2000 20:03:00 -0500 (EST)
- List-Id: Discussion list for automake <automake.gnu.org><mailto:automake-request@gnu.org?subject=unsubscribe>
Hello!
pr87.test fails if Automake is built with srcdir=.
The fix is exactly the same as for install2.test, pr19.test and
subobj3.test (applied 2000-05-01).
Regards,
Pavel Roskin
____________________
Index: ChangeLog
--- ChangeLog Thu Nov 23 19:03:13 2000
+++ ChangeLog Thu Nov 23 19:55:09 2000
@@ -1 +1,6 @@
+2000-11-23 Pavel Roskin <proski@gnu.org>
+
+ * pr87.test: Prevent automake from looking into .. and ../..
+ by using AC_CONFIG_AUX_DIR(.) in configure.in.
+
2000-11-23 Tom Tromey <tromey@cygnus.com>
Index: pr87.test
--- pr87.test Thu Nov 23 16:42:14 2000
+++ pr87.test Thu Nov 23 19:50:43 2000
@@ -20,6 +20,7 @@
echo "SUBDIRS = $subdirs" > Makefile.am
cat >configure.in <<EOF
AC_INIT(`echo $subdirs | sed 's|\([a-z][a-z]*\).*|\1/\1.c|'`)
+AC_CONFIG_AUX_DIR(.)
AM_INIT_AUTOMAKE(test_am, 1.0)
AC_PROG_CC
AC_OUTPUT(Makefile `echo $subdirs | sed 's|\([a-z][a-z]*\)|\1/Makefile|g'`)
____________________