diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2014-09-30 11:21:58 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-06 16:09:53 +0100 |
commit | 505a6b696ae990442de720e5e1135a3e44d5f75c (patch) | |
tree | 9065e4a414c2eb215d929e11c32f76a7e69e5858 /bitbake/lib/bb/fetch2 | |
parent | 09a51b9976f1ea3f0442778a615442b40bcdce95 (diff) | |
download | poky-505a6b696ae990442de720e5e1135a3e44d5f75c.tar.gz |
bitbake: fetcher: fix BB_STRICT_CHECKSUM datatype check
Forcing strict to be a string, to avoid problems when performing comparisons
[YOCTO #6762]
(Bitbake rev: b8ed2098bdea2afd93ab4e3e1b834f3a31cb60de)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 87cf7e61a6..59a7f1b6bd 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -543,8 +543,8 @@ def verify_checksum(ud, d): | |||
543 | 543 | ||
544 | if ud.method.recommends_checksum(ud): | 544 | if ud.method.recommends_checksum(ud): |
545 | # If strict checking enabled and neither sum defined, raise error | 545 | # If strict checking enabled and neither sum defined, raise error |
546 | strict = d.getVar("BB_STRICT_CHECKSUM", True) or None | 546 | strict = d.getVar("BB_STRICT_CHECKSUM", "1") or "0" |
547 | if strict and not (ud.md5_expected or ud.sha256_expected): | 547 | if (strict == "1") and not (ud.md5_expected or ud.sha256_expected): |
548 | logger.error('No checksum specified for %s, please add at least one to the recipe:\n' | 548 | logger.error('No checksum specified for %s, please add at least one to the recipe:\n' |
549 | 'SRC_URI[%s] = "%s"\nSRC_URI[%s] = "%s"' % | 549 | 'SRC_URI[%s] = "%s"\nSRC_URI[%s] = "%s"' % |
550 | (ud.localpath, ud.md5_name, md5data, | 550 | (ud.localpath, ud.md5_name, md5data, |