]> code.ossystems Code Review - openembedded-core.git/commitdiff
buildhistory.bbclass: create wrapper functions around buildhistory_get_sdk_installed
authorLaurentiu Palcu <laurentiu.palcu@intel.com>
Thu, 13 Feb 2014 13:49:14 +0000 (15:49 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 13 Feb 2014 17:48:38 +0000 (17:48 +0000)
bb.build.exec_func() does not allow passing arguments to the executed
scripts. Use wrappers instead.

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/buildhistory.bbclass

index c048ca290eb9a94d6532ea5c2d5f327cb7f60670..0033b5af8360a606b86f088bc47533726b36dec8 100644 (file)
@@ -388,6 +388,14 @@ buildhistory_get_sdk_installed() {
        buildhistory_get_installed ${BUILDHISTORY_DIR_SDK}/$1 sdk
 }
 
+buildhistory_get_sdk_installed_host() {
+       buildhistory_get_sdk_installed host
+}
+
+buildhistory_get_sdk_installed_target() {
+       buildhistory_get_sdk_installed target
+}
+
 buildhistory_list_files() {
        # List the files in the specified directory, but exclude date/time etc.
        # This awk script is somewhat messy, but handles where the size is not printed for device files under pseudo
@@ -449,8 +457,8 @@ ROOTFS_POSTPROCESS_COMMAND =+ "buildhistory_get_image_installed ; "
 IMAGE_POSTPROCESS_COMMAND += " buildhistory_get_imageinfo ; "
 
 # We want these to be the last run so that we get called after complementary package installation
-POPULATE_SDK_POST_TARGET_COMMAND_append = "buildhistory_get_sdk_installed target ; "
-POPULATE_SDK_POST_HOST_COMMAND_append = "buildhistory_get_sdk_installed host ; "
+POPULATE_SDK_POST_TARGET_COMMAND_append = "buildhistory_get_sdk_installed_target ; "
+POPULATE_SDK_POST_HOST_COMMAND_append = "buildhistory_get_sdk_installed_host ; "
 
 SDK_POSTPROCESS_COMMAND += "buildhistory_get_sdkinfo ; "