]> git.donarmstrong.com Git - debhelper.git/commitdiff
r406: * Fixed dh_installwm. Oops. Closes: #81124
authorjoey <joey>
Thu, 4 Jan 2001 02:35:36 +0000 (02:35 +0000)
committerjoey <joey>
Thu, 4 Jan 2001 02:35:36 +0000 (02:35 +0000)
debian/changelog
dh_installwm

index 1a52490d8f3f81e18a76ef2ac70c45351c4c66b6..353755120b35288cbfaca66059ff776a59c189ed 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (2.2.11) unstable; urgency=medium
+
+  * Fixed dh_installwm. Oops. Closes: #81124 
+
+ -- Joey Hess <joeyh@debian.org>  Wed,  3 Jan 2001 10:18:38 -0800
+
 debhelper (2.2.10) unstable; urgency=low
 
   * dh_shlibdeps: re-enabled -l flag, it's needed again. Closes: #80560
index b687ccf41e31edb94e205687b7366cc14dfdeb24..9a970feb308c705fe2139b551d29c46b9dea8395 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 #
-# Add to postinst and postrm to register a window manager.
+# Add to postinst and prerm to register a window manager.
 
 use Debian::Debhelper::Dh_Lib;
 init();
@@ -32,7 +32,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        if (@wm && ! $dh{NOSCRIPTS}) {
                foreach (@wm) {
                        autoscript($PACKAGE,"postinst","postinst-wm","s:#WM#:$_:;s/#PRIORITY#/$dh{PRIORITY}/",);
-                       autoscript($PACKAGE,"postrm","postrm-wm","s:#WM#:$_:");
+                       autoscript($PACKAGE,"prerm","prerm-wm","s:#WM#:$_:");
                }
        }
 }