summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-01 00:54:39 +0000
committerChris Larson <clarson@kergoth.com>2004-12-01 00:54:39 +0000
commit4b31672dd72768e5011624cfec33c5ebad41c30c (patch)
treeca54970443c05aee72ae7b4b858b3d9b9551fc60
parenteece1ffe92678310dd7103076f6f3597ab4199a4 (diff)
downloadbitbake-contrib-4b31672dd72768e5011624cfec33c5ebad41c30c.tar.gz
BUGFIX: oe.build.mkstamp had a hardcoded path to the stamps dir.
-rw-r--r--bin/oe/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/oe/build.py b/bin/oe/build.py
index d1c2767d1..756cbd7fc 100644
--- a/bin/oe/build.py
+++ b/bin/oe/build.py
@@ -342,11 +342,11 @@ def md5_is_current(task):
def mkstamp(task, d):
"""Creates/updates a stamp for a given task"""
- mkdirhier(data.expand('${TMPDIR}/stamps', d));
stamp = data.getVar('STAMP', d)
if not stamp:
return
stamp = "%s.%s" % (data.expand(stamp, d), task)
+ mkdirhier(os.path.dirname(stamp))
open(stamp, "w+")