Checking in changes used for the woody r2 update images:

Cope with changes in md5sum; don't fail if we get the spurious "-"
This commit is contained in:
Steve McIntyre 2004-07-12 21:22:05 +00:00
parent fa62c31887
commit 932c89932e
1 changed files with 3 additions and 2 deletions

View File

@ -126,9 +126,10 @@ while (<F>) {
$tv{'Filename'}= "$pathprefix$fn";
open(C,"md5sum <$fn |") || die "$fn $!";
open(C,"md5sum $fn |") || die "$fn $!";
chop($_=<C>); 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";