]> sourceware.org Git - automake.git/commitdiff
2001-04-10 Robert Collins <robert.collins@itdomain.com.au>
authorTom Tromey <tromey@redhat.com>
Wed, 11 Apr 2001 05:43:56 +0000 (05:43 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 11 Apr 2001 05:43:56 +0000 (05:43 +0000)
* tests/subobj5.test: New file.

ChangeLog
THANKS
tests/subobj5.test [new file with mode: 0755]

index 1be14971527f55e5ea5c340e93b0ee8db9feec88..5791218b4303d83b72a9ff92f4cdacbbbed85fdf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-04-10  Robert Collins  <robert.collins@itdomain.com.au>
+
+       * tests/subobj5.test: New file.
+
 2001-04-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
 
        * m4/make.m4 (AM_MAKE_INCLUDE): Pass `-s' to make.
diff --git a/THANKS b/THANKS
index 709a1155aa030b155ca4ebf32c8ef13e7708f73c..84e6179a5928e7dd679ece8f014cc0f91956a941 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -123,6 +123,7 @@ Richard Boulton             richard@tartarus.org
 Rob Savoye             rob@cygnus.com
 Robert Bihlmeyer       robbe@orcus.priv.at
 Robert Boehne          rboehne@ricardo-us.com
+Robert Collins         robert.collins@itdomain.com.au
 Rusty Ballinger                rusty@rlyeh.engr.sgi.com
 Seth Alves             alves@hungry.com
 Shuhei Amakawa         <sa264@cam.ac.uk>
diff --git a/tests/subobj5.test b/tests/subobj5.test
new file mode 100755 (executable)
index 0000000..3a51868
--- /dev/null
@@ -0,0 +1,33 @@
+#! /bin/sh
+
+# Test of subdir make dist rules.
+# From Robert Collins
+
+. $srcdir/defs || exit 1
+
+cat > configure.in << 'END'
+AC_INIT(generic/a.c)
+AM_INIT_AUTOMAKE(nonesuch, nonesuch)
+AM_PROG_CC_C_O
+AC_PROG_CC
+AC_OUTPUT(Makefile generic/Makefile)
+END
+
+cat > Makefile.am << 'END'
+bin_PROGRAMS = wish
+wish_SOURCES = generic/a.c
+END
+
+mkdir generic
+: > generic/a.c
+: > generic/Makefile.am
+
+set -e
+
+$needs_autoconf
+
+$ACLOCAL
+$AUTOCONF
+$AUTOMAKE --include-deps --copy --add-missing
+./configure
+make dist
This page took 0.037827 seconds and 5 git commands to generate.