]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1992: * Fix absurd typo. How did I test for an hour and miss that? Closes: #419612
authorjoeyh <joeyh>
Mon, 16 Apr 2007 22:20:08 +0000 (22:20 +0000)
committerjoeyh <joeyh>
Mon, 16 Apr 2007 22:20:08 +0000 (22:20 +0000)
debian/changelog
dh_installudev

index ddb513bb7f6e59c26223a2eceafd7becc090b099..4def03de035c7063b5a9ea8b1c8a0c672aaa29d0 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (5.0.47) unstable; urgency=low
+
+  * Fix absurd typo. How did I test for an hour and miss that? Closes: #419612
+
+ -- Joey Hess <joeyh@debian.org>  Mon, 16 Apr 2007 18:19:12 -0400
+
 debhelper (5.0.46) unstable; urgency=low
 
   * Fix a typo in postinst-udev.
index 912fecdea5486db986fed85f694f742bef5e44c1..768703a5c6692ebc38168451b3459881a75e87aa 100755 (executable)
@@ -79,8 +79,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                if (! $dh{NOSCRIPTS}) {
                        my $old="/etc/udev/$filename";
                        my $rule="/etc/udev/rules.d/$dh{PRIORITY}$filename";
-                       autoscript($package,"preinst","preinst-udev","s!#OLD#!$old!/g;s!#RULE#!$rule!g");
-                       autoscript($package,"postinst","postinst-udev","s!#OLD#!$old!/g;s!#RULE#!$rule!g");
+                       autoscript($package,"preinst","preinst-udev","s!#OLD#!$old!g;s!#RULE#!$rule!g");
+                       autoscript($package,"postinst","postinst-udev","s!#OLD#!$old!g;s!#RULE#!$rule!g");
                }
        }
 }