From: Tom Tromey Date: Sat, 26 Aug 2000 20:27:16 +0000 (+0000) Subject: For PR automake/73: X-Git-Tag: Release-1-4b~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=779c4f3de9bfdd20d86722707783856990967f5c;p=thirdparty%2Fautomake.git For PR automake/73: * Makefile.am (TESTS): Added instman2.test. * instman2.test: New file. --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 11ca6eb9a..75e880056 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,9 @@ 2000-08-26 Tom Tromey + For PR automake/73: + * Makefile.am (TESTS): Added instman2.test. + * instman2.test: New file. + For PR automake/77: * Makefile.am (TESTS): Added ldflags.test. * ldflags.test: New file. diff --git a/tests/Makefile.am b/tests/Makefile.am index 3904f201a..f8e8f0f84 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -124,6 +124,7 @@ instdata.test \ instexec.test \ insthook.test \ instman.test \ +instman2.test \ interp.test \ interp2.test \ java.test \ diff --git a/tests/Makefile.in b/tests/Makefile.in index ade8f1cbb..52dd3cddd 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -191,6 +191,7 @@ instdata.test \ instexec.test \ insthook.test \ instman.test \ +instman2.test \ interp.test \ interp2.test \ java.test \ diff --git a/tests/instman2.test b/tests/instman2.test new file mode 100755 index 000000000..fb4401051 --- /dev/null +++ b/tests/instman2.test @@ -0,0 +1,16 @@ +#! /bin/sh + +# Test to make sure mkinstalldirs invocation correct in install-man +# target. Bug reported by Gordon Irlam . + +. $srcdir/defs || exit 1 + +cat > Makefile.am << 'EOF' +man8_MANS = frob.8 +EOF + +: > frob.8 + +$AUTOMAKE || exit 1 + +grep '^install-man' Makefile.in