diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 14:55:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 16:05:02 +0100 |
commit | 2253e9f12734c6e6aa489942b5e4628eca1fa29d (patch) | |
tree | cdd9bc62026e1eff49569f025a95fcecde88c78b /meta/recipes-core/psplash | |
parent | b9a1b9ad55c0f9fec082ffa37e576d8fd664becd (diff) | |
download | openembedded-core-contrib-2253e9f12734c6e6aa489942b5e4628eca1fa29d.tar.gz |
classes/lib: Fix getcmdstatus breakage
I mistakenly thought subprocess had getcmdstatus in python 2. It doesn't so lets
add a wrapper and have this work in both worlds.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/psplash')
-rw-r--r-- | meta/recipes-core/psplash/psplash_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb index 392fada689c..fdb5e778969 100644 --- a/meta/recipes-core/psplash/psplash_git.bb +++ b/meta/recipes-core/psplash/psplash_git.bb @@ -71,7 +71,7 @@ ALTERNATIVE_PRIORITY = "100" ALTERNATIVE_LINK_NAME[psplash] = "${bindir}/psplash" python do_compile () { - import shutil, subprocess + import shutil # Build a separate executable for each splash image convertscript = "%s/make-image-header.sh" % d.getVar('S', True) @@ -80,7 +80,7 @@ python do_compile () { outputfiles = d.getVar('SPLASH_INSTALL', True).split() for localfile, outputfile in zip(localfiles, outputfiles): if localfile.endswith(".png"): - outp = subprocess.getstatusoutput('%s %s POKY' % (convertscript, localfile)) + outp = oe.utils.getstatusoutput('%s %s POKY' % (convertscript, localfile)) print(outp[1]) fbase = os.path.splitext(os.path.basename(localfile))[0] shutil.copyfile("%s-img.h" % fbase, destfile) |