]> git.donarmstrong.com Git - debhelper.git/commitdiff
r491: * dh_installxfonts: Do not specify /usr/sbin/ paths; that should be in
authorjoey <joey>
Sun, 16 Sep 2001 22:52:22 +0000 (22:52 +0000)
committerjoey <joey>
Sun, 16 Sep 2001 22:52:22 +0000 (22:52 +0000)
     the path and dpkg enforces it. Closes: #112385

debian/changelog
dh_installxfonts

index aca0659475c7014b33aa86794bf007ab8d93d2f9..10526e758ad0e9ad466dd49d9c8588cb4096f0e4 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (3.0.45) unstable; urgency=low
+
+  * dh_installxfonts: Do not specify /usr/sbin/ paths; that should be in
+    the path and dpkg enforces it. Closes: #112385
+
+ -- Joey Hess <joeyh@debian.org>  Sun, 16 Sep 2001 18:48:59 -0400
+
 debhelper (3.0.44) unstable; urgency=low
 
   * Added dh_strip to rules.multi2, and removed .TODO.swp. Closes: #110418
index 7a50c597863a26a2997777489b54eb313dbe8e1a..df85cec8bda258852ba50f4206b9b01d420c0720 100755 (executable)
@@ -50,10 +50,10 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                # Figure out what commands the postinst will need to call.
                my @updatecmds=('makefontdir');
                foreach my $f (@fontdirs) {
-                       push @updatecmds, '/usr/sbin/update-fonts-alias'
+                       push @updatecmds, 'update-fonts-alias'
                                if -f "$tmp/etc/X11/fonts/$f/$package.alias";
                        # This must come _before_ mkfontdir, thus the unshift.
-                       unshift @updatecmds, '/usr/sbin/update-fonts-scale'
+                       unshift @updatecmds, 'update-fonts-scale'
                                if -f "$tmp/etc/X11/fonts/$f/$package.scale";
                }