2000-05-01 Pavel Roskin <pavel_roskin@geocities.com>
authorTom Tromey <tromey@redhat.com>
Mon, 1 May 2000 21:03:23 +0000 (21:03 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 1 May 2000 21:03:23 +0000 (21:03 +0000)
* install2.test: Prevent automake from looking into .. and ../..
by using AC_CONFIG_AUX_DIR(.) in configure.in
* pr19.test: Likewise
* subobj3.test: Likewise

tests/ChangeLog
tests/install2.test
tests/pr19.test
tests/subobj3.test

index cceafa3..13f2f5e 100644 (file)
@@ -1,3 +1,10 @@
+2000-05-01  Pavel Roskin  <pavel_roskin@geocities.com>
+
+       * install2.test: Prevent automake from looking into .. and ../..
+       by using AC_CONFIG_AUX_DIR(.) in configure.in
+       * pr19.test: Likewise
+       * subobj3.test: Likewise
+
 2000-03-19  Tom Tromey  <tromey@cygnus.com>
 
        * libobj2.test: Put depcomp into subdir.
index 950beaa..4bd438f 100755 (executable)
@@ -7,6 +7,8 @@
 
 cat > configure.in << 'END'
 AC_INIT
+dnl Prevent automake from looking in .. and ../..
+AC_CONFIG_AUX_DIR(.)
 AM_INIT_AUTOMAKE(foo, 0.1)
 AC_OUTPUT(Makefile)
 END
index 979836a..8c13873 100755 (executable)
@@ -7,6 +7,8 @@
 
 cat > configure.in << 'END'
 AC_INIT(foo.l)
+dnl Prevent automake from looking in .. and ../..
+AC_CONFIG_AUX_DIR(.)
 AM_INIT_AUTOMAKE(am_lex_bug, 0.1.1)
 
 dnl Checks for programs.
index 12f83a6..64af126 100755 (executable)
@@ -7,6 +7,8 @@
 cat > configure.in << 'END'
 AC_INIT(sub/hello.c)
 AM_INIT_AUTOMAKE(hello,0.23)
+dnl Prevent automake from looking in .. and ../..
+AC_CONFIG_AUX_DIR(.)
 AC_PROG_CC
 AM_PROG_CC_C_O
 AM_C_PROTOTYPES