diff options
Diffstat (limited to 'bitbake/lib')
-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) |