From 932c89932e03237ffcda5087df1e43dd2812a728 Mon Sep 17 00:00:00 2001 From: Steve McIntyre <93sam@debian.org> Date: Mon, 12 Jul 2004 21:22:05 +0000 Subject: [PATCH] Checking in changes used for the woody r2 update images: Cope with changes in md5sum; don't fail if we get the spurious "-" --- tools/my-dpkg-scanpackages | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/my-dpkg-scanpackages b/tools/my-dpkg-scanpackages index ef6b0528..146e91a7 100755 --- a/tools/my-dpkg-scanpackages +++ b/tools/my-dpkg-scanpackages @@ -126,9 +126,10 @@ while () { $tv{'Filename'}= "$pathprefix$fn"; - open(C,"md5sum <$fn |") || die "$fn $!"; + open(C,"md5sum $fn |") || die "$fn $!"; chop($_=); close(C); $? and die "\`md5sum < $fn' exited with $?\n"; - /^[0-9a-f]{32}$/ or die "Strange text from \`md5sum < $fn': \`$_'\n"; + /^[0-9a-f]{32}/ or die "Strange text from \`md5sum < $fn': \`$_'\n"; + s/\ .*$//; $tv{'MD5sum'}= $_; @stat= stat($fn) or die "Couldn't stat $fn: $!\n";