From: Russ Allbery Date: Thu, 5 Jun 2008 20:13:43 +0000 (-0700) Subject: Don't attempt to register debian-policy-process X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=abf302275d126abad150393c1376a954142aff4b;p=debian%2Fdebian-policy.git Don't attempt to register debian-policy-process There were stray calls to register debian-policy-process in the postinst and prerm scripts left behind when that document was removed. Remove them as well. --- diff --git a/debian/changelog b/debian/changelog index ed13596..86950d2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debian-policy (3.8.0.1) unstable; urgency=low + + * Don't attempt to register the non-existent debian-policy-process + document. Thanks, Adrian von Bidder. (Closes: #484706) + + -- Russ Allbery Thu, 05 Jun 2008 13:13:01 -0700 + debian-policy (3.8.0.0) unstable; urgency=low * Bug fix: "[PROPOSAL] "debian/README.source" file for packages with diff --git a/debian/postinst.in b/debian/postinst.in index ec481c9..6462b64 100644 --- a/debian/postinst.in +++ b/debian/postinst.in @@ -29,7 +29,6 @@ case "$1" in /usr/sbin/install-docs -i /usr/share/doc-base/debian-menu-policy /usr/sbin/install-docs -i /usr/share/doc-base/debian-mime-policy /usr/sbin/install-docs -i /usr/share/doc-base/debian-perl-policy - /usr/sbin/install-docs -i /usr/share/doc-base/debian-policy-process /usr/sbin/install-docs -i /usr/share/doc-base/debconf-spec /usr/sbin/install-docs -i /usr/share/doc-base/fhs fi diff --git a/debian/prerm.in b/debian/prerm.in index 1fc3abb..6b65b55 100644 --- a/debian/prerm.in +++ b/debian/prerm.in @@ -71,7 +71,6 @@ if [ -x /usr/sbin/install-docs ]; then /usr/sbin/install-docs -r debian-menu-policy /usr/sbin/install-docs -r debian-mime-policy /usr/sbin/install-docs -r debian-perl-policy - /usr/sbin/install-docs -r debian-policy-process /usr/sbin/install-docs -r debconf-spec /usr/sbin/install-docs -r fhs fi