]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_installxfonts
r1086: * Several man pae typo fixes by Ruben Porras. Closes: #202819
[debhelper.git] / dh_installxfonts
index 5159868045581b61a3f4a6a1809796ae54240de0..c60178db51332b3c0999c68a4e5f76cc9874270d 100755 (executable)
@@ -25,11 +25,11 @@ directory, and if you have fonts.alias or fonts.scale files, you should
 install them into the correct location under etc/X11/fonts in your package
 build directory.
 
-Your package should should depend on xutils (>= 4.0.3) so that the
+Your package should depend on xutils (>= 4.0.3) so that the
 update-fonts-* commands are available. (This program adds that dependency to
 ${misc:Depends}.)
 
-This programt automatically generates the postinst and postrm commands needed
+This program automatically generates the postinst and postrm commands needed
 to register X fonts.  See L<dh_installdeb(1)> for an explanation of how this
 works.
 
@@ -68,9 +68,9 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                }
 
                autoscript($package, "postinst", "postinst-xfonts",
-                       "s:#CMDS#:".join("\n", map { "\t$_" } @cmds).":;");
+                       "s:#CMDS#:".join(";", @cmds).":;");
                autoscript($package, "postrm", "postrm-xfonts",
-                       "s:#CMDS#:".join("\n", @cmds).":;");
+                       "s:#CMDS#:".join(";", @cmds).":;");
 
                addsubstvar($package, "misc:Depends", "xutils", ">= 4.0.3");
        }
@@ -82,7 +82,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
 
 =head1 SEE ALSO
 
-L<debhelper(1)>
+L<debhelper(7)>
 
 This program is a part of debhelper.