From 65cfd58a27b7f3e348bb0c2cd54a38909f68880b Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 10 Oct 2006 16:08:25 +0000 Subject: [PATCH] add workaround for freebsd git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5017 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- scripts/download.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/download.pl b/scripts/download.pl index 009ed3b689..e7c7ee32e6 100755 --- a/scripts/download.pl +++ b/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.35.1