mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 18:32:12 +02:00
sanity: Fix int verses string reference
The sanity update code needs to be passed an int, not string. (From OE-Core rev: 390bad905537820f49add855c95d726b5b55c8fa) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -147,8 +147,8 @@ is a good way to visualise the changes.""" % (current_lconf, lconf_version)
|
||||
with open(bblayers_fn, "w") as f:
|
||||
f.write(''.join(lines))
|
||||
return
|
||||
|
||||
sanity_conf_update(bblayers_fn, lines, 'LCONF_VERSION', "7")
|
||||
current_lconf += 1
|
||||
sanity_conf_update(bblayers_fn, lines, 'LCONF_VERSION', current_lconf)
|
||||
return
|
||||
|
||||
raise NotImplementedError(failmsg)
|
||||
|
||||
Reference in New Issue
Block a user