diff options
author | joey <joey> | 2005-04-14 17:56:57 +0000 |
---|---|---|
committer | joey <joey> | 2005-04-14 17:56:57 +0000 |
commit | 14d0783a65e1feff79a3534e3ec5bd14733d3d9a (patch) | |
tree | 968eb5c8b20663ea10d21dee372d2ad25f21d25f | |
parent | 5b7ac1ae5b74507930d42c9bbc7c9d52d0b06f89 (diff) | |
download | debhelper-14d0783a65e1feff79a3534e3ec5bd14733d3d9a.tar.gz |
r1748: releasing version 4.2.334.2.33
-rw-r--r-- | debian/changelog | 5 | ||||
-rwxr-xr-x | dh_md5sums | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index 42615897..092fb6ad 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,11 @@ -debhelper (4.2.33) UNRELEASED; urgency=low +debhelper (4.2.33) unstable; urgency=low * Update Spanish translation of dh_clean man page. Closes: #303052 * dh_installmodules autoscripts: Now that return code 3 is allocated by update-modules to indicate /etc/modules.conf is not automatically generated, we can ignore that return code since it's not a condition that should fail an installation. Closes: #165400 - * dh_md5sums: Don't pass "." to find, so results don't have ./ prepended, - which broke exclusion of conffiles. Thanks, Damir Dzeko + * dh_md5sums: Fix exclusion of conffiles. Thanks, Damir Dzeko (note: this was broken in version 4.1.22) -- Joey Hess <joeyh@debian.org> Sat, 9 Apr 2005 17:27:12 -0400 @@ -62,7 +62,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { while (<CONFF>) { chomp; s/^\///; - $exclude.="! -path \"$_\" "; + $exclude.="! -path \"./$_\" "; } close CONFF; } @@ -73,7 +73,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } my $olddir=getcwd(); - complex_doit("cd $tmp >/dev/null ; find -type f $exclude ! -regex '.*/DEBIAN/.*' -printf '%P\\0' | xargs -r0 md5sum > DEBIAN/md5sums ; cd '$olddir' >/dev/null"); + complex_doit("cd $tmp >/dev/null ; find . -type f $exclude ! -regex '.*/DEBIAN/.*' -printf '%P\\0' | xargs -r0 md5sum > DEBIAN/md5sums ; cd '$olddir' >/dev/null"); # If the file's empty, no reason to waste inodes on it. if (-z "$tmp/DEBIAN/md5sums") { doit("rm","-f","$tmp/DEBIAN/md5sums"); |