summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-core/psplash/psplash_git.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb
index 5413b24057..2d0cae371d 100644
--- a/meta/recipes-core/psplash/psplash_git.bb
+++ b/meta/recipes-core/psplash/psplash_git.bb
@@ -74,12 +74,13 @@ python do_compile () {
74 import shutil, commands 74 import shutil, commands
75 75
76 # Build a separate executable for each splash image 76 # Build a separate executable for each splash image
77 convertscript = "%s/make-image-header.sh" % d.getVar('S', True)
77 destfile = "%s/psplash-poky-img.h" % d.getVar('S', True) 78 destfile = "%s/psplash-poky-img.h" % d.getVar('S', True)
78 localfiles = d.getVar('SPLASH_LOCALPATHS', True).split() 79 localfiles = d.getVar('SPLASH_LOCALPATHS', True).split()
79 outputfiles = d.getVar('SPLASH_INSTALL', True).split() 80 outputfiles = d.getVar('SPLASH_INSTALL', True).split()
80 for localfile, outputfile in zip(localfiles, outputfiles): 81 for localfile, outputfile in zip(localfiles, outputfiles):
81 if localfile.endswith(".png"): 82 if localfile.endswith(".png"):
82 outp = commands.getstatusoutput('./make-image-header.sh %s POKY' % localfile) 83 outp = commands.getstatusoutput('%s %s POKY' % (convertscript, localfile))
83 print(outp[1]) 84 print(outp[1])
84 fbase = os.path.splitext(os.path.basename(localfile))[0] 85 fbase = os.path.splitext(os.path.basename(localfile))[0]
85 shutil.copyfile("%s-img.h" % fbase, destfile) 86 shutil.copyfile("%s-img.h" % fbase, destfile)