summaryrefslogtreecommitdiff
path: root/dh_installwm
diff options
context:
space:
mode:
authorjoey <joey>2001-01-04 02:35:36 +0000
committerjoey <joey>2001-01-04 02:35:36 +0000
commite4b1e959c35acf5b49f4c4950c33cdb71f4f8613 (patch)
tree6f131c104009af0cc9899467c1c1216a8d33c619 /dh_installwm
parentd3134ec2ae827f9e56c0c25af2b7494bfc1e36fc (diff)
r406: * Fixed dh_installwm. Oops. Closes: #81124
Diffstat (limited to 'dh_installwm')
-rwxr-xr-xdh_installwm4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_installwm b/dh_installwm
index b687ccf4..9a970feb 100755
--- a/dh_installwm
+++ b/dh_installwm
@@ -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#:$_:");
}
}
}