* tests/insthook.test (Makefile.am): Add a proper `uninstall-hook' target to remove the symlink created by the `install-exec-hook' target; this prevents "make distcheck" from failing spuriously. Since we are at it, delete an extra blank line, and add a trailing `:' command. --- ChangeLog | 9 +++++++++ tests/insthook.test | 6 +++++- 2 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog index bbea2b3..9e5b59d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,14 @@ 2011-10-06 Stefano Lattarini <stefano.lattar...@gmail.com> + tests: fix spurious failure in 'insthook.test' + * tests/insthook.test (Makefile.am): Add a proper `uninstall-hook' + target to remove the symlink created by the `install-exec-hook' + target; this prevents "make distcheck" from failing spuriously. + Since we are at it, delete an extra blank line, and add a trailing + `:' command. + +2011-10-06 Stefano Lattarini <stefano.lattar...@gmail.com> + maintcheck: fix spurious failure * lib/am/distdir.am: Use `$(infodir)', not `${infodir}', to avoid complaints from the `sc_no_brace_variable_expansions' maintainer diff --git a/tests/insthook.test b/tests/insthook.test index a315447..1b03324 100755 --- a/tests/insthook.test +++ b/tests/insthook.test @@ -37,6 +37,9 @@ installcheck-local: test -f "$(bindir)/foo" test -f "$(bindir)/foo-$(VERSION)" : > $(top_srcdir)/../ok + +uninstall-hook: + rm -f $(DESTDIR)$(bindir)/foo-$(VERSION) END echo 1 > foo @@ -63,7 +66,6 @@ grep 1 bin/foo-1.0 grep 2 bin/foo-2.0 grep 2 bin/foo - # install-hook is an error. cat >>Makefile.am <<EOF install-hook: @@ -73,3 +75,5 @@ EOF AUTOMAKE_fails grep install-data-hook stderr grep install-exec-hook stderr + +: -- 1.7.2.3