]> git.donarmstrong.com Git - debhelper.git/commitdiff
r507: * dh_installxfonts: separate multiple commands with \n so sed doesn't get
authorjoey <joey>
Wed, 30 Jan 2002 00:00:50 +0000 (00:00 +0000)
committerjoey <joey>
Wed, 30 Jan 2002 00:00:50 +0000 (00:00 +0000)
     upset. Closes: #131322

autoscripts/postinst-xfonts
debian/changelog
dh_installxfonts

index 8821bc5f0603d15da5c20ba87c0c6fd28c6f115c..4c5ab1b8f0d7d0d332815db3ee41534711a76376 100644 (file)
@@ -1,3 +1,3 @@
 if [ -x /usr/sbin/update-fonts-dir ]; then
-#CMDS#
+       #CMDS#
 fi
index 2f482b0a929239d9695f962a41610b8ab3a66549..6fb86b4369098fa14cc14dc4d6b705d5d35b8484 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (3.4.5) unstable; urgency=low
+
+  * dh_installxfonts: separate multiple commands with \n so sed doesn't get
+    upset. Closes: #131322
+
+ -- Joey Hess <joey@kitenet.net>  Tue, 29 Jan 2002 18:58:58 -0500
+
 debhelper (3.4.4) unstable; urgency=low
 
   * Introduced the debian/compat file. This is the new, preferred way to say
index 5159868045581b61a3f4a6a1809796ae54240de0..0ee9cb3aba65c0a0f0a2a1d02087a3810ff603f7 100755 (executable)
@@ -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");
        }