diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 59a7f1b6bd..c0a4763a8b 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -543,7 +543,7 @@ 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", "1") or "0" | 546 | strict = d.getVar("BB_STRICT_CHECKSUM", True) or "0" |
547 | if (strict == "1") 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"' % |