From 607b012c34cb8a30c2a14f53ecba4b2d53e9a62a Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 10 Oct 2006 16:08:25 +0000 Subject: [PATCH] add workaround for freebsd SVN-Revision: 5017 --- openwrt/scripts/download.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openwrt/scripts/download.pl b/openwrt/scripts/download.pl index 009ed3b689..e7c7ee32e6 100755 --- a/openwrt/scripts/download.pl +++ b/openwrt/scripts/download.pl @@ -43,9 +43,10 @@ sub download cleanup(); return; } + $? = 0; my $sum = `cat "$target/$filename.md5sum"`; - $sum =~ /^(\w+)\s+/ or die "Could not generate md5sum\n"; + $sum =~ /^(\w+)\s*/ or die "Could not generate md5sum\n"; $sum = $1; if (($md5sum =~ /\w{32}/) and ($sum ne $md5sum)) { -- 2.30.2