diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-10-19 17:33:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-20 10:11:44 +0100 |
commit | 41afc48ab979dff6ebb3ea4003dd6baefff7f644 (patch) | |
tree | 2441b95ac28334a1984764685579b4a56db590d9 | |
parent | ea1d566bc2ff61f2e086effb9ca6551b263eacbe (diff) | |
download | openembedded-core-41afc48ab979dff6ebb3ea4003dd6baefff7f644.tar.gz openembedded-core-41afc48ab979dff6ebb3ea4003dd6baefff7f644.tar.bz2 openembedded-core-41afc48ab979dff6ebb3ea4003dd6baefff7f644.zip |
classes/populate_sdk_ext: detect and warn if running in OE environment
If you run the extensible SDK environment setup script in a shell
session where oe-init-build-env has been run already, and attempt to use
the two together, strange things happen - you may not even be running
devtool from the extensible SDK, but the OE tree. This isn't a supported
use case anyway, so show a warning recommending starting a new shell
session.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 060a44ae88..249ec363db 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -238,6 +238,9 @@ sdk_ext_postinst() { echo "printf 'SDK environment now set up; additionally you may now run devtool to perform development tasks.\nRun devtool --help for further details.\n'" >> $env_setup_script + # Warn if trying to use external bitbake and the ext SDK together + echo "(which bitbake > /dev/null 2>&1 && echo 'WARNING: attempting to use the extensible SDK in an environment set up to run bitbake - this may lead to unexpected results. Please source this script in a new shell session instead.') || true" >> $env_setup_script + # For now this is where uninative.bbclass expects the tarball mv *-nativesdk-libc.tar.* $target_sdk_dir/`dirname ${oe_init_build_env_path}` |