summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-21 09:50:37 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-26 15:21:20 +0000
commit17ccaab9a5092aeb3c7af5cf5f2b04c963880632 (patch)
treee5ef2564c9437dbd045051c9adf4fbd095820762 /meta
parent983d1b70e7de99662cfcbb27f57f28c3c67febf1 (diff)
downloadpoky-17ccaab9a5092aeb3c7af5cf5f2b04c963880632.tar.gz
reproduce: Fix exclusion list for rpm
rpm uses "XXX-VERSION" compared to deb/ipk which use "XXX_VERSION" which breaks the go package exclusion. Work around with both go_ and go- for now. (From OE-Core rev: 2af535282833dddb58f24ec5b360230c47e6f6b1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index 8849c95c49..e54230f853 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -38,6 +38,7 @@ exclude_packages = [
38 'go-helloworld', 38 'go-helloworld',
39 'go-runtime', 39 'go-runtime',
40 'go_', 40 'go_',
41 'go-',
41 'gst-devtools', 42 'gst-devtools',
42 'gstreamer1.0-python', 43 'gstreamer1.0-python',
43 'gtk-doc', 44 'gtk-doc',