summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-03-08 09:39:40 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-31 12:21:53 +0100
commit8fae39c6a1af2b67d7378bf7a1669b2e8394f7d9 (patch)
tree0cb374474d3fbeba0daa75c76b052299da05b09f /bitbake
parentd38968c4fca254dd478be8a54881b93ff29fadb5 (diff)
downloadpoky-8fae39c6a1af2b67d7378bf7a1669b2e8394f7d9.tar.gz
utils: fix typo in lockfile
(Bitbake rev: 53a10b6793c5bdb45854483abe5da791058dfd84) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index f49ee5544a..ccafda19e3 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -412,7 +412,7 @@ def lockfile(name, shared=False):
412 412
413 if not os.access(dirname, os.W_OK): 413 if not os.access(dirname, os.W_OK):
414 logger.error("Unable to acquire lock '%s', directory is not writable", 414 logger.error("Unable to acquire lock '%s', directory is not writable",
415 dirname) 415 name)
416 sys.exit(1) 416 sys.exit(1)
417 417
418 op = fcntl.LOCK_EX 418 op = fcntl.LOCK_EX