summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-06 19:49:17 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-06 19:49:17 +0000
commit3f78c071b7a04bfc486dadc387863cc0fbb53fc8 (patch)
tree9ed6cf5cdec2ade3db9a841ff2feb5be2e20c1b6 /meta/classes/base.bbclass
parentdf8569b4d89ce83e3cafd87f2f37b795d1bfbd6d (diff)
downloadpoky-3f78c071b7a04bfc486dadc387863cc0fbb53fc8.tar.gz
base.bbclass: Use the new stampfile function in bitbake to determine the path to the stampfile
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index f8ce1232cd..f1ffb4540a 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -107,7 +107,7 @@ python base_scenefunction () {
107python base_do_setscene () { 107python base_do_setscene () {
108 for f in (bb.data.getVar('SCENEFUNCS', d, 1) or '').split(): 108 for f in (bb.data.getVar('SCENEFUNCS', d, 1) or '').split():
109 bb.build.exec_func(f, d) 109 bb.build.exec_func(f, d)
110 if not os.path.exists(bb.data.getVar('STAMP', d, 1) + ".do_setscene"): 110 if not os.path.exists(bb.build.stampfile("do_setscene", d)):
111 bb.build.make_stamp("do_setscene", d) 111 bb.build.make_stamp("do_setscene", d)
112} 112}
113do_setscene[selfstamp] = "1" 113do_setscene[selfstamp] = "1"