]> git.donarmstrong.com Git - debhelper.git/commitdiff
r241: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:18:27 +0000 (05:18 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:18:27 +0000 (05:18 +0000)
debian/changelog
dh_clean

index cfe8937bec44da81b055d485f6c7f4c90f40a209..b26eb15fc308c8a134b13817316bac9247574ff9 100644 (file)
@@ -1,3 +1,12 @@
+debhelper (2.0.16) unstable; urgency=low
+
+  * Dh_lib.pm: when looking for debhelper files in debian/, test with -f,
+    not with -e, because it might fail if you're building a package named,
+    say, 'docs', with a temp dir of debian/docs. I don't anticipate this
+    ever happenning, but it pays to be safe.
+
+ -- Joey Hess <joeyh@master.debian.org>  Tue, 20 Jul 1999 21:00:04 -0700
+
 debhelper (2.0.15) unstable; urgency=low
 
   * dh_clean: only force-remove debian/tmp if in v2 mode. In v1 mode, we
index 8ba45d3a1a4f0995a9f761cc11fb9899aeb74457..9c6f4f3d48cf3f135bc604cb52379d42e9e09f77 100755 (executable)
--- a/dh_clean
+++ b/dh_clean
@@ -43,4 +43,4 @@ if (! $dh{D_FLAG}) {
                ) -exec rm -f {} ;"));
 }
 
-doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1);
+doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! Dh_Lib::compat(1);