From: Tom Tromey Date: Sun, 17 Jun 2001 18:53:03 +0000 (+0000) Subject: * tests/acoutput2.test: New file. X-Git-Tag: Release-1-4h~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eeaa4f07917cd4a0578f1b054e180d3bd7c30873;p=thirdparty%2Fautomake.git * tests/acoutput2.test: New file. * tests/Makefile.am (TESTS): Added acoutput2.test. --- diff --git a/ChangeLog b/ChangeLog index da15d5d27..b2d36fa43 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-06-17 Tom Tromey + + * tests/acoutput2.test: New file. + * tests/Makefile.am (TESTS): Added acoutput2.test. + 2001-06-15 Tom Tromey * tests/Makefile.am (TESTS): Added libtool.test. diff --git a/THANKS b/THANKS index c61919801..cdb81726a 100644 --- 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 diff --git a/tests/Makefile.am b/tests/Makefile.am index 6d99e3368..3075821b8 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -10,6 +10,7 @@ aclocali1.test \ aclocalii.test \ acoutnoq.test \ acoutput.test \ +acoutput2.test \ acoutqnl.test \ acouttbs.test \ acsilent.test \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 323338605..d4502bbef 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -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 index 000000000..fdefa027f --- /dev/null +++ b/tests/acoutput2.test @@ -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