diff options
author | Randy Witt <randy.e.witt@linux.intel.com> | 2015-02-23 17:00:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-24 17:41:43 +0000 |
commit | 46ee86c3d4827b609107af2d4b4d8c37f0cf0968 (patch) | |
tree | 4713a80a52f5fe4d46d93f8da4d22b54ddfabf30 /scripts | |
parent | 8e8e9243c122bf766a1589ef1235b1d0dcf7974f (diff) | |
download | poky-46ee86c3d4827b609107af2d4b4d8c37f0cf0968.tar.gz |
scripts/oe-buildenv-internal: add means of skipping SDK check during setup
The oe-buildenv-internal script checks if the user is already in an sdk
environment and errors if true. Add a way to skip this check.
(From OE-Core rev: 6d847b84b9db2b315e17107a7ab4832d15cb2147)
Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com>
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/oe-buildenv-internal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-buildenv-internal b/scripts/oe-buildenv-internal index bba6f8fea3..9ed2721536 100755 --- a/scripts/oe-buildenv-internal +++ b/scripts/oe-buildenv-internal | |||
@@ -24,7 +24,7 @@ if [ -z "$OEROOT" ]; then | |||
24 | return 1 | 24 | return 1 |
25 | fi | 25 | fi |
26 | 26 | ||
27 | if [ ! -z "$OECORE_SDK_VERSION" ]; then | 27 | if [ -z "$OE_SKIP_SDK_CHECK" -a ! -z "$OECORE_SDK_VERSION" ]; then |
28 | echo >&2 "Error: The OE SDK/ADT was detected as already being present in this shell environment. Please use a clean shell when sourcing this environment script." | 28 | echo >&2 "Error: The OE SDK/ADT was detected as already being present in this shell environment. Please use a clean shell when sourcing this environment script." |
29 | return 1 | 29 | return 1 |
30 | fi | 30 | fi |