summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-06-26 10:53:54 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-28 16:23:17 +0100
commitbb5095d3f73a00222f50f9dd2cf8dc27cc72b4a2 (patch)
treeffc7f477e16bb832f4597edd599d36c088eccb09 /meta/classes
parent66f7921f34dfa8b3c7f8f7184715214164f3f8b0 (diff)
downloadopenembedded-core-bb5095d3f73a00222f50f9dd2cf8dc27cc72b4a2.tar.gz
native.bbclass: correct PATH to have native-intercept be prepended
This was needed since it was after the sysroots and thus in some cases the native sysroot chown was being found and used instead of the script provided by native-intercept/chown. This was noticed by the non-gplv3 build since it's coreutils depends on coreutils-native. Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/native.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index bca48d4637..eb30b5a3c7 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -99,7 +99,7 @@ PKG_CONFIG_SYSROOT_DIR = ""
LIBCOVERRIDE = ""
CLASSOVERRIDE = "class-native"
-PATH =. "${COREBASE}/scripts/native-intercept:"
+PATH_prepend = "${COREBASE}/scripts/native-intercept:"
python native_virtclass_handler () {
if not isinstance(e, bb.event.RecipePreFinalise):