diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-23 17:28:42 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-23 20:54:04 +0100 |
commit | d603bb25469f0767dba3e3acbeaefc5def748db0 (patch) | |
tree | 9fc0ccb0eba5a33387070651109966cc5da4f650 /meta/lib/oeqa/selftest/cases | |
parent | f4eec671b51e09495e184720e8c8952de79a1ce2 (diff) | |
download | poky-d603bb25469f0767dba3e3acbeaefc5def748db0.tar.gz |
oeqa/selftest/incompatible_lib: Fix append usage
It's pure luck this has worked so far, add a missing space to the append.
(From OE-Core rev: 793e0575b1cebb953276b5f93ff31e48c19779c8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/incompatible_lic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/incompatible_lic.py b/meta/lib/oeqa/selftest/cases/incompatible_lic.py index 3eabd79097..2a6382a1a8 100644 --- a/meta/lib/oeqa/selftest/cases/incompatible_lic.py +++ b/meta/lib/oeqa/selftest/cases/incompatible_lic.py | |||
@@ -85,7 +85,7 @@ class IncompatibleLicenseTests(OESelftestTestCase): | |||
85 | class IncompatibleLicensePerImageTests(OESelftestTestCase): | 85 | class IncompatibleLicensePerImageTests(OESelftestTestCase): |
86 | def default_config(self): | 86 | def default_config(self): |
87 | return """ | 87 | return """ |
88 | IMAGE_INSTALL_append = "bash" | 88 | IMAGE_INSTALL_append = " bash" |
89 | INCOMPATIBLE_LICENSE_pn-core-image-minimal = "GPL-3.0 LGPL-3.0" | 89 | INCOMPATIBLE_LICENSE_pn-core-image-minimal = "GPL-3.0 LGPL-3.0" |
90 | """ | 90 | """ |
91 | 91 | ||