aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-08-02 16:51:11 +1200
committerPaul Eggleton <paul.eggleton@linux.intel.com>2016-08-11 16:36:49 +1200
commit1e6893065b381947abb6c2052e65ed3578cf03c5 (patch)
tree3d8ba44b51101a21fdb30187d272bb60c7078f9f
parent5ed0d5a7d9b051a551a6de644bf6a42b87c12471 (diff)
downloadopenembedded-core-contrib-paule/oe-init-bitbake.tar.gz
oe-buildenv-internal: hint at specifying bitbake path in error messagepaule/oe-init-bitbake
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>
-rwxr-xr-xscripts/oe-buildenv-internal2
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