From: Alexandre Duret-Lutz Date: Wed, 4 Dec 2002 17:45:25 +0000 (+0000) Subject: * tests/man2.test: Exercize `make uninstall', to test X-Git-Tag: Release-1-7b~338 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=fa0e84cdd543b480fe8f59da297e132aad9dae5a;p=automake.git * tests/man2.test: Exercize `make uninstall', to test the previous change. --- diff --git a/ChangeLog b/ChangeLog index 3631d16b..41273a97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-12-04 Alexandre Duret-Lutz + + * tests/man2.test: Exercize `make uninstall', to test + the previous change. + 2002-12-03 Nicolas Joly * lib/am/mans.am (uninstall-man%SECTION%): Change the extension of diff --git a/tests/man2.test b/tests/man2.test index 0db5a34c..e8318d38 100755 --- a/tests/man2.test +++ b/tests/man2.test @@ -47,3 +47,9 @@ DESTDIR="`pwd`/=inst" $MAKE -e SHELL=/bin/sh install test -f ./=inst/man/man2/foo.2 test -f ./=inst/man/man4/foo.4 test -f ./=inst/man/man4/bar.4 + +DESTDIR="`pwd`/=inst" $MAKE -e SHELL=/bin/sh uninstall + +test ! -f ./=inst/man/man2/foo.2 +test ! -f ./=inst/man/man4/foo.4 +test ! -f ./=inst/man/man4/bar.4