diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-10 16:08:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-10 16:08:25 +0000 |
commit | 80b24172102f60af767454b21711c4086c85e94e (patch) | |
tree | d52b7821badec008b33c53ad6659465bfe3b3de9 | |
parent | 575100f02f940199ab467fb6ec12b15b1148c960 (diff) | |
download | upstream-80b24172102f60af767454b21711c4086c85e94e.tar.gz upstream-80b24172102f60af767454b21711c4086c85e94e.tar.bz2 upstream-80b24172102f60af767454b21711c4086c85e94e.zip |
add workaround for freebsd
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5017 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | scripts/download.pl | 3 |
1 files changed, 2 insertions, 1 deletions
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)) { |