diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-08-02 09:24:36 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-08-04 11:44:28 +0100 |
commit | 1666605fe5baef005ae199221cb11d1aebc91461 (patch) | |
tree | 086c9a8faad46daba7492a1f87046ada6403e4b7 /scripts/lib/scriptutils.py | |
parent | 5fa764fff8903d386e4fb4b5e8e530d31936823d (diff) | |
download | poky-1666605fe5baef005ae199221cb11d1aebc91461.tar.gz |
scripts/lib/scriptutils.py: add recipe_qa artifacts to exclusion list in filter_src_subdirs()
With newly added recipe_qa task, the function needs to filter out its output as well.
The issue wouldn't appear in selftest because it's triggered by buildhistory and
selftest disables that.
(From OE-Core rev: da1284c990957827ee89685921c53b64490a32b2)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/scriptutils.py')
-rw-r--r-- | scripts/lib/scriptutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py index f7c1bd9e4e..f433106c9a 100644 --- a/scripts/lib/scriptutils.py +++ b/scripts/lib/scriptutils.py | |||
@@ -277,6 +277,6 @@ def filter_src_subdirs(pth): | |||
277 | Used by devtool and recipetool. | 277 | Used by devtool and recipetool. |
278 | """ | 278 | """ |
279 | dirlist = os.listdir(pth) | 279 | dirlist = os.listdir(pth) |
280 | filterout = ['git.indirectionsymlink', 'source-date-epoch'] | 280 | filterout = ['git.indirectionsymlink', 'source-date-epoch', 'sstate-install-recipe_qa'] |
281 | dirlist = [x for x in dirlist if x not in filterout] | 281 | dirlist = [x for x in dirlist if x not in filterout] |
282 | return dirlist | 282 | return dirlist |