diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-03-30 00:30:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-30 21:20:37 +0100 |
commit | 727566ea0e4d19797ecb4cce5750f78e895f6293 (patch) | |
tree | 113372f3102b58a5bb22326d3ce096f7feeb5152 /meta | |
parent | 81db27c208468dc460e9d8f0063ad24b2b37dc97 (diff) | |
download | openembedded-core-727566ea0e4d19797ecb4cce5750f78e895f6293.tar.gz openembedded-core-727566ea0e4d19797ecb4cce5750f78e895f6293.tar.bz2 openembedded-core-727566ea0e4d19797ecb4cce5750f78e895f6293.zip |
selftest/buildoptions.py: use INHERIT +=
* INHERIT = -> INHERIT +=
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/buildoptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py index 2fc77e1ed4..e9a5aaddd1 100644 --- a/meta/lib/oeqa/selftest/buildoptions.py +++ b/meta/lib/oeqa/selftest/buildoptions.py @@ -276,7 +276,7 @@ class ArchiverTest(oeSelfTest): Test for archiving the work directory and exporting the source files. """ self.add_command_to_tearDown('cleanup-workdir') - self.write_config("INHERIT = \"archiver\"\nARCHIVER_MODE[src] = \"original\"\nARCHIVER_MODE[srpm] = \"1\"") + self.write_config("INHERIT += \"archiver\"\nARCHIVER_MODE[src] = \"original\"\nARCHIVER_MODE[srpm] = \"1\"") res = bitbake("xcursor-transparent-theme", ignore_status=True) self.assertEqual(res.status, 0, "\nCouldn't build xcursortransparenttheme.\nbitbake output %s" % res.output) pkgs_path = g.glob(str(self.builddir) + "/tmp/deploy/sources/allarch*/xcurs*") |