]> git.donarmstrong.com Git - debhelper.git/commitdiff
r514: * Fix to #99169 was accidentually reverted in 3.0.42; reinstated.
authorjoey <joey>
Sun, 17 Mar 2002 04:31:16 +0000 (04:31 +0000)
committerjoey <joey>
Sun, 17 Mar 2002 04:31:16 +0000 (04:31 +0000)
debian/changelog
dh_clean

index 1f7903b6a6230939abc5aee9cd0214c959da64f4..05b806f99711286f6b208530cec3686361681f7a 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (3.4.12) unstable; urgency=low
+
+  * Fix to #99169 was accidentually reverted in 3.0.42; reinstated.
+
+ -- Joey Hess <joeyh@debian.org>  Sat, 16 Mar 2002 23:31:46 -0500
+
 debhelper (3.4.11) unstable; urgency=low
 
   * Fixed dh_installdocs and dh_installexamples to support multiple -X's.
index 9583a55b02e04190681fd2a964c86c0cc764f2e0..d0af17d1d9a73532ea35ffcc06a61c86f86e7f57 100755 (executable)
--- a/dh_clean
+++ b/dh_clean
@@ -84,6 +84,10 @@ if (! $dh{D_FLAG}) {
        # wildcard them.
        complex_doit("rm -f debian/*.debhelper");
 
+       # Remove some files that were left around by older versions of
+       # debhelper.
+       doit("rm","-f","debian/substvars");
+       
        # See if some files that would normally be deleted are excluded.
        my $find_options='';
        if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') {