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: https://sourceware.org/git/?a=commitdiff_plain;h=f313951471d182b8e81fee7c8043e0d78cd9848d;p=automake.git For PR automake/73: * Makefile.am (TESTS): Added instman2.test. * instman2.test: New file. --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 11ca6eb9..75e88005 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 3904f201..f8e8f0f8 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 ade8f1cb..52dd3cdd 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 00000000..fb440105 --- /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