From 5d01c9c296c821dd5e65e01c323e1c51f8a079d2 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Tue, 8 Mar 2011 09:39:40 -0700 Subject: utils: fix typo in lockfile (Bitbake rev: 53a10b6793c5bdb45854483abe5da791058dfd84) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- bitbake/lib/bb/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): if not os.access(dirname, os.W_OK): logger.error("Unable to acquire lock '%s', directory is not writable", - dirname) + name) sys.exit(1) op = fcntl.LOCK_EX -- cgit v1.2.3-54-g00ecf