From: joey Date: Tue, 17 Aug 1999 05:18:27 +0000 (+0000) Subject: r241: Initial Import X-Git-Tag: debian_version_0_1~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b7e14a5eff72fffb13f5d58a81d7974671079671;p=debhelper.git r241: Initial Import --- diff --git a/debian/changelog b/debian/changelog index cfe8937..b26eb15 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 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 diff --git a/dh_clean b/dh_clean index 8ba45d3..9c6f4f3 100755 --- 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);