From: Richard Purdie Date: Thu, 6 Jan 2011 19:49:17 +0000 (+0000) Subject: base.bbclass: Use the new stampfile function in bitbake to determine the path to... X-Git-Tag: 2011-1~2974 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3f78c071b7a04bfc486dadc387863cc0fbb53fc8;p=openembedded-core.git base.bbclass: Use the new stampfile function in bitbake to determine the path to the stampfile Signed-off-by: Richard Purdie --- 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 () { python base_do_setscene () { for f in (bb.data.getVar('SCENEFUNCS', d, 1) or '').split(): bb.build.exec_func(f, d) - if not os.path.exists(bb.data.getVar('STAMP', d, 1) + ".do_setscene"): + if not os.path.exists(bb.build.stampfile("do_setscene", d)): bb.build.make_stamp("do_setscene", d) } do_setscene[selfstamp] = "1"