diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-26 10:53:54 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-28 16:26:44 +0100 |
commit | 6b66a81ef748c4880844797e4e9b1c5f177a57b4 (patch) | |
tree | c5a73cfddf9bbc931cbf084854b3e2ac3c3fb5c6 /meta/classes/native.bbclass | |
parent | 8c904eb643ad8ca1bc29cb2d870a80b355dcb341 (diff) | |
download | poky-6b66a81ef748c4880844797e4e9b1c5f177a57b4.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.
(From OE-Core rev: bb5095d3f73a00222f50f9dd2cf8dc27cc72b4a2)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r-- | meta/classes/native.bbclass | 2 |
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 = "" | |||
99 | LIBCOVERRIDE = "" | 99 | LIBCOVERRIDE = "" |
100 | CLASSOVERRIDE = "class-native" | 100 | CLASSOVERRIDE = "class-native" |
101 | 101 | ||
102 | PATH =. "${COREBASE}/scripts/native-intercept:" | 102 | PATH_prepend = "${COREBASE}/scripts/native-intercept:" |
103 | 103 | ||
104 | python native_virtclass_handler () { | 104 | python native_virtclass_handler () { |
105 | if not isinstance(e, bb.event.RecipePreFinalise): | 105 | if not isinstance(e, bb.event.RecipePreFinalise): |