diff options
author | joey <joey> | 1999-08-17 05:08:10 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:08:10 +0000 |
commit | 61fc7ffe47681eed509bf441fbbc9108775c5f43 (patch) | |
tree | 99b8a18c7450426c4fe12b95783713d7a0125f19 | |
parent | dc1239161f436fffdd586b4640cef147424f626e (diff) | |
download | debhelper-61fc7ffe47681eed509bf441fbbc9108775c5f43.tar.gz |
r162: Initial Import
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | dh_installdocs | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 33bbbe2e..cd5bdff1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (1.2.26) unstable; urgency=low + + * dh_installdocs: use prerm-doc-base script fragement. Was using + postrm-doc-base, for some weird reason. + + -- Joey Hess <joeyh@master.debian.org> Mon, 18 Jan 1999 13:36:40 -0800 + debhelper (1.2.25) unstable; urgency=low * autoscripts/*menu*: It turns out that "command" is like test -w, it will diff --git a/dh_installdocs b/dh_installdocs index 347881cc..1d051819 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -72,7 +72,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { "$TMP/usr/share/doc-base/$PACKAGE"); if (! $dh{NOSCRIPTS}) { autoscript($PACKAGE,"postinst","postinst-doc-base"); - autoscript($PACKAGE,"postrm","postrm-doc-base") + autoscript($PACKAGE,"prerm","prerm-doc-base") } } } |