mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
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>
This commit is contained in:
@@ -107,7 +107,7 @@ python base_scenefunction () {
|
|||||||
python base_do_setscene () {
|
python base_do_setscene () {
|
||||||
for f in (bb.data.getVar('SCENEFUNCS', d, 1) or '').split():
|
for f in (bb.data.getVar('SCENEFUNCS', d, 1) or '').split():
|
||||||
bb.build.exec_func(f, d)
|
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)
|
bb.build.make_stamp("do_setscene", d)
|
||||||
}
|
}
|
||||||
do_setscene[selfstamp] = "1"
|
do_setscene[selfstamp] = "1"
|
||||||
|
|||||||
Reference in New Issue
Block a user