diff options
author | joey <joey> | 1999-08-17 05:18:27 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:18:27 +0000 |
commit | b7e14a5eff72fffb13f5d58a81d7974671079671 (patch) | |
tree | 3aaca351a8933d56155b022bc8832522cdd60af4 | |
parent | d950296f8b54c6e10ea39a00ee6cfa32ab7545bb (diff) | |
download | debhelper-b7e14a5eff72fffb13f5d58a81d7974671079671.tar.gz |
r241: Initial Import
-rw-r--r-- | debian/changelog | 9 | ||||
-rwxr-xr-x | dh_clean | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index cfe8937b..b26eb15f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 @@ -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); |