summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-03-08 09:39:40 -0700
committerSaul Wold <sgw@linux.intel.com>2011-05-06 17:44:21 -0700
commit5d01c9c296c821dd5e65e01c323e1c51f8a079d2 (patch)
treef086ef86eccb26ca0c3d82ae092c672bfd3bb083 /bitbake
parent55f72863b9f7f7c6b04e10cdbcd7bda8e675793c (diff)
downloadpoky-5d01c9c296c821dd5e65e01c323e1c51f8a079d2.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