bitbake: fetcher: fix getVar call due to incorrect argument datatype
authorAlejandro Hernandez <alejandro.hernandez@linux.intel.com>
Fri, 10 Oct 2014 18:13:46 +0000 (13:13 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 11 Oct 2014 07:11:03 +0000 (08:11 +0100)
(Bitbake rev: 2ac33aac3446cb12227f1b8daa5f27f417c9bb9e)

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/fetch2/__init__.py

index 59a7f1b..c0a4763 100644 (file)
@@ -543,7 +543,7 @@ def verify_checksum(ud, d):
 
     if ud.method.recommends_checksum(ud):
         # If strict checking enabled and neither sum defined, raise error
-        strict = d.getVar("BB_STRICT_CHECKSUM", "1") or "0"
+        strict = d.getVar("BB_STRICT_CHECKSUM", True) or "0"
         if (strict == "1") and not (ud.md5_expected or ud.sha256_expected):
             logger.error('No checksum specified for %s, please add at least one to the recipe:\n'
                              'SRC_URI[%s] = "%s"\nSRC_URI[%s] = "%s"' %