summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorMing Liu <ming.liu@windriver.com>2014-01-07 16:13:52 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-07 13:58:32 +0000
commite93a345fae7c21652547bec501fcb1f3b6c6427d (patch)
treea39c1d820b9715496a95c23d9ac720d5bea4a75a /meta/classes
parent100c8831a56eb1598837ffac78a1bac577f7efd4 (diff)
downloadpoky-e93a345fae7c21652547bec501fcb1f3b6c6427d.tar.gz
sstate: add do_package to the noexec list in setscene_depvalid
do_package doesn't exist and are noexec anyway for native/cross/crosssdk packages. (From OE-Core rev: 1028ac813fa9803ebfff6bcfa7f8b67012609b27) Signed-off-by: Ming Liu <ming.liu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 2b5b7cdc2a..35c3f85cfc 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -710,7 +710,7 @@ def setscene_depvalid(task, taskdependees, notneeded, d):
710 return False 710 return False
711 continue 711 continue
712 # Native/Cross packages don't exist and are noexec anyway 712 # Native/Cross packages don't exist and are noexec anyway
713 if isNativeCross(taskdependees[dep][0]) and taskdependees[dep][1] in ['do_package_write_deb', 'do_package_write_ipk', 'do_package_write_rpm', 'do_packagedata']: 713 if isNativeCross(taskdependees[dep][0]) and taskdependees[dep][1] in ['do_package_write_deb', 'do_package_write_ipk', 'do_package_write_rpm', 'do_packagedata', 'do_package']:
714 continue 714 continue
715 715
716 # Consider sysroot depending on sysroot tasks 716 # Consider sysroot depending on sysroot tasks