fix c&p error in last patch
authorPhil Blundell <philb@gnu.org>
Fri, 13 Nov 2009 17:32:32 +0000 (17:32 +0000)
committerPhil Blundell <philb@gnu.org>
Fri, 13 Nov 2009 17:32:32 +0000 (17:32 +0000)
classes/base.bbclass

index ef0bf85..3602801 100644 (file)
@@ -89,7 +89,7 @@ def base_chk_file_vars(parser, localpath, params, data):
     if want_sha256sum:
         try:
             shapipe = os.popen('PATH=%s oe_sha256sum %s' % (bb.data.getVar('PATH', data, True), localpath))
-            shadata = (shapipe.readline().split() or [ "" ])[0]
+            sha256data = (shapipe.readline().split() or [ "" ])[0]
             shapipe.close()
         except OSError, e:
             raise Exception("Executing shasum failed")