diff options
author | joey <joey> | 2005-04-14 17:37:35 +0000 |
---|---|---|
committer | joey <joey> | 2005-04-14 17:37:35 +0000 |
commit | 5b7ac1ae5b74507930d42c9bbc7c9d52d0b06f89 (patch) | |
tree | b278fe3b7388579fd5723d56f62e9d64ce621362 /dh_md5sums | |
parent | d5453631808c4af4f985f5dacc74b77b68624c30 (diff) | |
download | debhelper-5b7ac1ae5b74507930d42c9bbc7c9d52d0b06f89.tar.gz |
r1747: * dh_md5sums: Don't pass "." to find, so results don't have ./ prepended,
which broke exclusion of conffiles. Thanks, Damir Dzeko
(note: this was broken in version 4.1.22)
Diffstat (limited to 'dh_md5sums')
-rwxr-xr-x | dh_md5sums | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |