[oe-commits] Jussi Kukkonen : sanity.bbclass: import subprocess in correct function

git at git.openembedded.org git at git.openembedded.org
Fri May 22 12:30:33 UTC 2015


Module: openembedded-core.git
Branch: master
Commit: 469b53fb3bb94c7e5e9fb53d07cec2292b13c87d
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=469b53fb3bb94c7e5e9fb53d07cec2292b13c87d

Author: Jussi Kukkonen <jussi.kukkonen at intel.com>
Date:   Wed May 20 22:11:06 2015 +0300

sanity.bbclass: import subprocess in correct function

check_sanity() no longer needs the subprocess module but
sanity_handle_abichanges() does use subprocess.call().

Signed-off-by: Jussi Kukkonen <jussi.kukkonen at intel.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/classes/sanity.bbclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index e738110..32e9b82 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -491,6 +491,8 @@ def sanity_handle_abichanges(status, d):
     #
     # Check the 'ABI' of TMPDIR
     #
+    import subprocess
+
     current_abi = d.getVar('OELAYOUT_ABI', True)
     abifile = d.getVar('SANITY_ABIFILE', True)
     if os.path.exists(abifile):
@@ -824,8 +826,6 @@ def check_sanity_everybuild(status, d):
         status.addresult("Error, IMAGE_FSTYPES vmdk and live can't be built together\n")
 
 def check_sanity(sanity_data):
-    import subprocess
-
     class SanityStatus(object):
         def __init__(self):
             self.messages = ""



More information about the Openembedded-commits mailing list