]> git.donarmstrong.com Git - debhelper.git/commitdiff
r348: * Fixes for perl 5.6.
authorjoey <joey>
Mon, 1 May 2000 20:37:56 +0000 (20:37 +0000)
committerjoey <joey>
Mon, 1 May 2000 20:37:56 +0000 (20:37 +0000)
   * Spelling fixes.

debian/changelog
dh_clean
dh_gencontrol
dh_shlibdeps

index dc388f6a32234dcdd108b416c6597ba9da3cafb7..04beb88903c4f443e195c94322c0a0cecf5720dc 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (2.0.95) unstable; urgency=low
+
+  * Fixes for perl 5.6.
+  * Spelling fixes.
+
+ -- Joey Hess <joeyh@debian.org>  Mon,  1 May 2000 13:35:11 -0700
+
 debhelper (2.0.94) unstable; urgency=low
 
   * examples/rules.multi2: binary-indep and binary-arch targets need to
index 1f73bea732aedb8f7c381d0e042ee9f1d40bfccc..1ca1012510cba863df9a989ea56f74d35b870f11 100755 (executable)
--- a/dh_clean
+++ b/dh_clean
@@ -11,11 +11,11 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        $EXT=pkgext($PACKAGE);
 
        if (! $dh{D_FLAG}) {
-               doit("rm","-f","debian/$EXT\substvars",
-                       "debian/$EXT\postinst.debhelper",
-                       "debian/$EXT\postrm.debhelper",
-                       "debian/$EXT\preinst.debhelper",
-                       "debian/$EXT\prerm.debhelper");
+               doit("rm","-f","debian/${EXT}substvars",
+                       "debian/${EXT}postinst.debhelper",
+                       "debian/${EXT}postrm.debhelper",
+                       "debian/${EXT}preinst.debhelper",
+                       "debian/${EXT}prerm.debhelper");
        }
        
        doit ("rm","-rf",$TMP);
index df53a753e3d86d9a810f741d8c68da61d8b53cd5..6a12694b60248bb4957615fe699ccf63ff9ea4c3 100755 (executable)
@@ -20,7 +20,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
 
        # Generate and install control file.
        doit("dpkg-gencontrol","-l$changelog","-isp","-p$PACKAGE",
-               "-Tdebian/$EXT\substvars","-P$TMP",@{$dh{U_PARAMS}});
+               "-Tdebian/${EXT}substvars","-P$TMP",@{$dh{U_PARAMS}});
 
        # This chmod is only necessary if the user sets the umask to something odd.
        doit("chmod","644","$TMP/DEBIAN/control");
index 83783aea4340e4e5da3b140539c0522d5e8f7e52..4504930bcfec9dd503a1b4bc25e357943e5832fe 100755 (executable)
@@ -33,6 +33,6 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        }
 
        if (@filelist) {
-               doit("dpkg-shlibdeps","-Tdebian/$EXT\substvars",@{$dh{U_PARAMS}},'-dDepends',@filelist);
+               doit("dpkg-shlibdeps","-Tdebian/${EXT}substvars",@{$dh{U_PARAMS}},'-dDepends',@filelist);
        }
 }