diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-28 15:59:53 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-28 13:54:32 -0800 |
commit | 6e440f84f9906b633d40fb8fd957c0ce231ff0c1 (patch) | |
tree | cfdfff021c0965d038065da1335152611bb685e6 /meta/classes | |
parent | 58396a5d24c62710fd0a9f3780d84ac8a95d8e7c (diff) | |
download | poky-6e440f84f9906b633d40fb8fd957c0ce231ff0c1.tar.gz |
native.bbclass: Mark various package functions as noexec since they don't do any work
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/native.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 067b1be13c..3ca9d62845 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass | |||
@@ -112,3 +112,8 @@ python __anonymous () { | |||
112 | bb.data.setVar("OVERRIDES", bb.data.getVar("OVERRIDES", d, False) + ":virtclass-native", d) | 112 | bb.data.setVar("OVERRIDES", bb.data.getVar("OVERRIDES", d, False) + ":virtclass-native", d) |
113 | } | 113 | } |
114 | 114 | ||
115 | do_package[noexec] = "1" | ||
116 | do_package_write_ipk[noexec] = "1" | ||
117 | do_package_write_deb[noexec] = "1" | ||
118 | do_package_write_rpm[noexec] = "1" | ||
119 | |||