summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake-dev/lib/bb/utils.py6
-rw-r--r--bitbake/lib/bb/utils.py6
2 files changed, 12 insertions, 0 deletions
diff --git a/bitbake-dev/lib/bb/utils.py b/bitbake-dev/lib/bb/utils.py
index 94bc62f7cf..ad1a515292 100644
--- a/bitbake-dev/lib/bb/utils.py
+++ b/bitbake-dev/lib/bb/utils.py
@@ -235,6 +235,12 @@ def lockfile(name):
235 Use the file fn as a lock file, return when the lock has been acquired. 235 Use the file fn as a lock file, return when the lock has been acquired.
236 Returns a variable to pass to unlockfile(). 236 Returns a variable to pass to unlockfile().
237 """ 237 """
238 path = os.path.dirname(name)
239 if not os.path.isdir(path):
240 import bb, sys
241 bb.msg.error(bb.msg.domain.Util, "Error, lockfile path does not exist!: %s" % path)
242 sys.exit(1)
243
238 while True: 244 while True:
239 # If we leave the lockfiles lying around there is no problem 245 # If we leave the lockfiles lying around there is no problem
240 # but we should clean up after ourselves. This gives potential 246 # but we should clean up after ourselves. This gives potential
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index 0f402f6279..9641b988ab 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -235,6 +235,12 @@ def lockfile(name):
235 Use the file fn as a lock file, return when the lock has been acquired. 235 Use the file fn as a lock file, return when the lock has been acquired.
236 Returns a variable to pass to unlockfile(). 236 Returns a variable to pass to unlockfile().
237 """ 237 """
238 path = os.path.dirname(name)
239 if not os.path.isdir(path):
240 import bb, sys
241 bb.msg.error(bb.msg.domain.Util, "Error, lockfile path does not exist!: %s" % path)
242 sys.exit(1)
243
238 while True: 244 while True:
239 # If we leave the lockfiles lying around there is no problem 245 # If we leave the lockfiles lying around there is no problem
240 # but we should clean up after ourselves. This gives potential 246 # but we should clean up after ourselves. This gives potential