diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-09-17 08:41:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-09-18 11:35:38 +0100 |
commit | d4f2f8269cff0e4e9a98ad1ef9c0f7b8a909d563 (patch) | |
tree | 697e1e5a81c26e7e0d9fbe269253aa77476599a8 /scripts/lib/recipetool/setvar.py | |
parent | 022deeb0effb92280cb86da962d8bd5e94d44947 (diff) | |
download | poky-d4f2f8269cff0e4e9a98ad1ef9c0f7b8a909d563.tar.gz |
recipetool/devtool: Ensure server knows about changed files
Bitbake has changed to require notification when metadata changes in the middle of tinfoil
sessions. Add the required function calls at the places metadata is changed.
(From OE-Core rev: e5574163ab49a8f51b2b34fd37acfd1cad9b7595)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/recipetool/setvar.py')
-rw-r--r-- | scripts/lib/recipetool/setvar.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/lib/recipetool/setvar.py b/scripts/lib/recipetool/setvar.py index f8e2ee75fb..b5ad335cae 100644 --- a/scripts/lib/recipetool/setvar.py +++ b/scripts/lib/recipetool/setvar.py | |||
@@ -49,6 +49,7 @@ def setvar(args): | |||
49 | for patch in patches: | 49 | for patch in patches: |
50 | for line in patch: | 50 | for line in patch: |
51 | sys.stdout.write(line) | 51 | sys.stdout.write(line) |
52 | tinfoil.modified_files() | ||
52 | return 0 | 53 | return 0 |
53 | 54 | ||
54 | 55 | ||