From: Mike Westerhof Date: Fri, 24 Oct 2008 05:18:19 +0000 (-0500) Subject: package_ipk.bbclass: add import bb where missing X-Git-Tag: Release-2010-05/1~5695^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05dd06fb5d13d6a33c82716cae23eecce09b6cb3;p=openembedded.git package_ipk.bbclass: add import bb where missing (fixes build failure for pointercal, and probably others) --- diff --git a/classes/package_ipk.bbclass b/classes/package_ipk.bbclass index 438d4a15da..e0636eef70 100644 --- a/classes/package_ipk.bbclass +++ b/classes/package_ipk.bbclass @@ -16,7 +16,7 @@ python package_ipk_install () { # Warning - this function is not multimachine safe (see stagingdir reference)! # - import os, sys + import os, sys, bb pkg = bb.data.getVar('PKG', d, 1) pkgfn = bb.data.getVar('PKGFN', d, 1) rootfs = bb.data.getVar('IMAGE_ROOTFS', d, 1) @@ -118,7 +118,7 @@ package_generate_ipkg_conf () { } python do_package_ipk () { - import sys, re, copy + import sys, re, copy, bb workdir = bb.data.getVar('WORKDIR', d, 1) if not workdir: @@ -305,6 +305,7 @@ python () { } python do_package_write_ipk () { + import bb packages = bb.data.getVar('PACKAGES', d, True) if not packages: bb.debug(1, "No PACKAGES defined, nothing to package")