]> sourceware.org Git - automake.git/commitdiff
* tests/acoutput2.test: New file.
authorTom Tromey <tromey@redhat.com>
Sun, 17 Jun 2001 18:53:02 +0000 (18:53 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 17 Jun 2001 18:53:02 +0000 (18:53 +0000)
* tests/Makefile.am (TESTS): Added acoutput2.test.

ChangeLog
THANKS
tests/Makefile.am
tests/Makefile.in
tests/acoutput2.test [new file with mode: 0755]

index da15d5d27ef00edab4b7d7cd1cc689aade453db8..b2d36fa43fc2f93f76597872c247045f92b0102c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-17  Tom Tromey  <tromey@redhat.com>
+
+       * tests/acoutput2.test: New file.
+       * tests/Makefile.am (TESTS): Added acoutput2.test.
+
 2001-06-15  Tom Tromey  <tromey@redhat.com>
 
        * tests/Makefile.am (TESTS): Added libtool.test.
diff --git a/THANKS b/THANKS
index c619198018e6048eade1e6a475b680d7165f4637..cdb81726ad3d349ecfd79eb7846d7be2a6359ba1 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -34,6 +34,7 @@ Doug Evans            devans@cygnus.com
 Eleftherios Gkioulekas lf@amath.washington.edu
 Elrond                 Elrond@Wunder-Nett.org
 Erez Zadok             ezk@cs.columbia.edu
+Eric Magnien           emagnien@club-internet.fr
 Erick Branderhorst     branderh@iaehv.nl
 François Pinard                pinard@iro.umontreal.ca
 Fred Fish              fnf@ninemoons.com
index 6d99e3368c23fed35c3b607a95ad4d0d89c567a5..3075821b897767549d8dade1765b3156f411ca30 100644 (file)
@@ -10,6 +10,7 @@ aclocali1.test \
 aclocalii.test \
 acoutnoq.test \
 acoutput.test \
+acoutput2.test \
 acoutqnl.test \
 acouttbs.test \
 acsilent.test \
index 3233386058f536292a48ead05b8a89d4b038e7bd..d4502bbefa996672eb73d27608d033e9d5394efd 100644 (file)
@@ -76,6 +76,7 @@ aclocali1.test \
 aclocalii.test \
 acoutnoq.test \
 acoutput.test \
+acoutput2.test \
 acoutqnl.test \
 acouttbs.test \
 acsilent.test \
diff --git a/tests/acoutput2.test b/tests/acoutput2.test
new file mode 100755 (executable)
index 0000000..fdefa02
--- /dev/null
@@ -0,0 +1,21 @@
+#! /bin/sh
+
+# Test for bug reported by Eric Magnien.
+
+. $srcdir/defs || exit 1
+
+cat > configure.in << 'END'
+AM_INIT_AUTOMAKE(nonesuch, nonesuch)
+AC_OUTPUT([subdir/Makefile subdir/foo Makefile foo], [true])
+END
+
+mkdir subdir
+
+: > Makefile.am
+: > subdir/Makefile.am
+: > foo.in
+: > subdir/foo.in
+
+$AUTOMAKE || exit 1
+
+grep '^DIST_COMMON =.*foo\.in' Makefile.in
This page took 0.041543 seconds and 5 git commands to generate.