From: Felix Fietkau Date: Tue, 10 Oct 2006 16:08:25 +0000 (+0000) Subject: add workaround for freebsd X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=607b012c34cb8a30c2a14f53ecba4b2d53e9a62a;p=librecmc%2Flibrecmc.git add workaround for freebsd SVN-Revision: 5017 --- 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)) {