diff options
-rw-r--r-- | meta/classes/native.bbclass | 2 | ||||
-rwxr-xr-x | scripts/native-intercept/chown | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 90fcd131c6..11ec6dcde3 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass | |||
@@ -85,6 +85,8 @@ EXTRA_NATIVE_PKGCONFIG_PATH ?= "" | |||
85 | PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}" | 85 | PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}" |
86 | PKG_CONFIG_SYSROOT_DIR = "" | 86 | PKG_CONFIG_SYSROOT_DIR = "" |
87 | 87 | ||
88 | PATH =. "${COREBASE}/scripts/native-intercept:" | ||
89 | |||
88 | python native_virtclass_handler () { | 90 | python native_virtclass_handler () { |
89 | if not isinstance(e, bb.event.RecipePreFinalise): | 91 | if not isinstance(e, bb.event.RecipePreFinalise): |
90 | return | 92 | return |
diff --git a/scripts/native-intercept/chown b/scripts/native-intercept/chown new file mode 100755 index 0000000000..4f43271c2b --- /dev/null +++ b/scripts/native-intercept/chown | |||
@@ -0,0 +1,2 @@ | |||
1 | #! /bin/sh | ||
2 | echo "Intercept $0: $@ -- do nothing" | ||