summaryrefslogtreecommitdiff
path: root/dh_md5sums
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2010-04-06 21:48:48 -0400
committerJoey Hess <joey@gnu.kitenet.net>2010-04-06 21:48:48 -0400
commitddb8e2fdbe56d1b61b4e3528353bce267fa47aec (patch)
tree6c78f6ba84faa623449a7f2a761579e04a9743dd /dh_md5sums
parent5ae4e671267e94d9bc9a16633ece5d24d9876c94 (diff)
refactor to pass silly test suite length limit
Diffstat (limited to 'dh_md5sums')
-rwxr-xr-xdh_md5sums3
1 files changed, 2 insertions, 1 deletions
diff --git a/dh_md5sums b/dh_md5sums
index ba1adf4f..56d1252a 100755
--- a/dh_md5sums
+++ b/dh_md5sums
@@ -75,7 +75,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
$exclude.="! \\( $dh{EXCLUDE_FIND} \\) ";
}
- complex_doit("(cd $tmp >/dev/null ; find . -type f $exclude ! -regex '.*/DEBIAN/.*' -printf '%P\\0' | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null");
+ my $find="find . -type f $exclude ! -regex '.*/DEBIAN/.*' -printf '%P\\0'";
+ complex_doit("(cd $tmp >/dev/null ; $find | LC_ALL=C sort -z | xargs -r0 md5sum > DEBIAN/md5sums) >/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");