diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-12-10 14:27:28 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:49 +0000 |
commit | d2123cc395091fc7fe6c1864f9a8ac28833a57db (patch) | |
tree | 5f9e4663f1ff0bab32dbc929591499bc1b2a2e41 /bitbake | |
parent | 212414b13fe437637a711a41c60328d0e2604421 (diff) | |
download | poky-d2123cc395091fc7fe6c1864f9a8ac28833a57db.tar.gz |
utils: fix 'lock' variable reference
(Bitbake rev: f57f8f3cc980e3ae1693c2e065227e951ed0b1c0)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 107b001401..17dfd4d47e 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -405,7 +405,7 @@ def fileslocked(files): | |||
405 | locks = [] | 405 | locks = [] |
406 | if files: | 406 | if files: |
407 | for lockfile in files: | 407 | for lockfile in files: |
408 | locks.append(bb.utils.lockfile(lock)) | 408 | locks.append(bb.utils.lockfile(lockfile)) |
409 | 409 | ||
410 | yield | 410 | yield |
411 | 411 | ||