From: Richard Purdie Date: Wed, 23 Sep 2020 16:28:42 +0000 (+0100) Subject: oeqa/selftest/incompatible_lib: Fix append usage X-Git-Tag: 2020-10-gatesgarth~168 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=793e0575b1cebb953276b5f93ff31e48c19779c8;p=openembedded-core.git oeqa/selftest/incompatible_lib: Fix append usage It's pure luck this has worked so far, add a missing space to the append. Signed-off-by: Richard Purdie --- 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): class IncompatibleLicensePerImageTests(OESelftestTestCase): def default_config(self): return """ -IMAGE_INSTALL_append = "bash" +IMAGE_INSTALL_append = " bash" INCOMPATIBLE_LICENSE_pn-core-image-minimal = "GPL-3.0 LGPL-3.0" """