diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-08-11 16:37:34 +1200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-17 10:32:00 +0100 |
commit | 5a1efa91a418e3206b047564d0fd6d5bac22a8d3 (patch) | |
tree | c91afc66ef2603adb5f7ef7123fe84ee16eb9f91 | |
parent | 6ae6680ad8d51eff756dcb6500fca2530e3e3e73 (diff) | |
download | openembedded-core-5a1efa91a418e3206b047564d0fd6d5bac22a8d3.tar.gz openembedded-core-5a1efa91a418e3206b047564d0fd6d5bac22a8d3.tar.bz2 openembedded-core-5a1efa91a418e3206b047564d0fd6d5bac22a8d3.zip |
oe-buildenv-internal: hint at specifying bitbake path in error message
If you check out OE-Core and then run oe-init-build-env you get an error
about not having bitbake checked out in a "bitbake" subdirectory,
however it's possible to specify the bitbake path on the
oe-init-build-env command line, so hint at that in the error message
rather than implying it has to be in the default location.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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 03dc50ff91..9fae3b4ec3 100755 --- a/scripts/oe-buildenv-internal +++ b/scripts/oe-buildenv-internal @@ -96,7 +96,7 @@ BITBAKEDIR=$(readlink -f "$BITBAKEDIR") BUILDDIR=$(readlink -f "$BUILDDIR") if [ ! -d "$BITBAKEDIR" ]; then - echo >&2 "Error: The bitbake directory ($BITBAKEDIR) does not exist! Please ensure a copy of bitbake exists at this location" + echo >&2 "Error: The bitbake directory ($BITBAKEDIR) does not exist! Please ensure a copy of bitbake exists at this location or specify an alternative path on the command line" return 1 fi |