From e6259191673f34ae6d56f1c0b746a3cc97455dac Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 17 Aug 1999 04:38:40 +0000 Subject: [PATCH] r30: Initial Import --- BUGS | 2 ++ debian/changelog | 6 ++++++ dh_clean | 5 ++--- examples/rules | 2 +- examples/rules.multi | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/BUGS b/BUGS index 3a33f32..51a7b61 100644 --- a/BUGS +++ b/BUGS @@ -1,3 +1,5 @@ dh_compress: doesn't verbose echo that it's cd'd to $TMP. dh_installdirs, dh_md5sums: uses ../.. to cd back to original location, but we don't know that $TMP is 2 levels deep. +dh_compress: refers to ../compress (meaning debian/compress), but we don't +know that this will work - exp if $TMP is not under debian/. diff --git a/debian/changelog b/debian/changelog index d453632..209cfb6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (0.24) unstable; urgency=low + + * dh_clean: no longer clean up empty (0 byte) files (#15240). + + -- Joey Hess Tue, 25 Nov 1997 14:29:37 -0500 + debhelper (0.23) unstable; urgency=low * Now depends on fileutils (>= 3.16-4), becuase with any earlier version diff --git a/dh_clean b/dh_clean index 73c094f..8e92fc8 100755 --- a/dh_clean +++ b/dh_clean @@ -14,9 +14,8 @@ for PACKAGE in $DH_DOPACKAGES; do done doit "rm -f debian/files* debian/*.debhelper $*" -# Remove other temp files. doit isn't smart enough to handle this, so I echo -# by hand (sigh). +# Remove other temp files. doit "find . \( -name '#*#' -o -name '*~' -o -name DEADJOE -o -name '*.orig' \ -o -name '*.rej' -o -name '*.bak' -o -name '.*.orig' \ -o -name '.*.rej' -o -name .SUMS -o -name TAGS -o -name core \ - -o -size 0 \) -exec rm -f {} \;" + \) -exec rm -f {} \;" diff --git a/examples/rules b/examples/rules index 86ec8a7..1066122 100755 --- a/examples/rules +++ b/examples/rules @@ -15,9 +15,9 @@ clean: dh_testdir dh_testroot rm -f build-stamp - dh_clean # Add here commands to clean up after the build process. #-$(MAKE) distclean + dh_clean # Build architecture-independent files here. binary-indep: build diff --git a/examples/rules.multi b/examples/rules.multi index 1fce1c0..496c336 100755 --- a/examples/rules.multi +++ b/examples/rules.multi @@ -18,9 +18,9 @@ clean: dh_testdir dh_testroot rm -f build-stamp - dh_clean # Add here commands to clean up after the build process. #-$(MAKE) distclean + dh_clean # Build architecture-independent files here. binary-indep: build -- 2.39.5