diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-29 22:03:42 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-30 12:37:03 +0100 |
| commit | cc67ce63d5f08eb8d4cf84b09c9b12390666ef9a (patch) | |
| tree | 7760ada653cb9fdee6e34c500ee27154b1f23b02 | |
| parent | 88f5abb028729212a7758c565eb90f0286593c5c (diff) | |
| download | poky-cc67ce63d5f08eb8d4cf84b09c9b12390666ef9a.tar.gz | |
bitbake: main: Fix error message typo
(Bitbake rev: a1330b8a15a3f12516e3e293ffb5d840f362375d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rwxr-xr-x | bitbake/lib/bb/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py index 8d1978f986..ca59eb9af8 100755 --- a/bitbake/lib/bb/main.py +++ b/bitbake/lib/bb/main.py | |||
| @@ -491,7 +491,7 @@ def setup_bitbake(configParams, configuration, extrafeatures=None): | |||
| 491 | def lockBitbake(): | 491 | def lockBitbake(): |
| 492 | topdir = bb.cookerdata.findTopdir() | 492 | topdir = bb.cookerdata.findTopdir() |
| 493 | if not topdir: | 493 | if not topdir: |
| 494 | bb.error("Unable to find conf/bblayers.conf or conf/bitbake.conf. BBAPTH is unset and/or not in a build directory?") | 494 | bb.error("Unable to find conf/bblayers.conf or conf/bitbake.conf. BBPATH is unset and/or not in a build directory?") |
| 495 | raise BBMainFatal | 495 | raise BBMainFatal |
| 496 | lockfile = topdir + "/bitbake.lock" | 496 | lockfile = topdir + "/bitbake.lock" |
| 497 | return topdir, bb.utils.lockfile(lockfile, False, False) | 497 | return topdir, bb.utils.lockfile(lockfile, False, False) |
