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:24:02 +0100 |
commit | dd31bcafb86936cee121674b2792129aca639547 (patch) | |
tree | 52c8c51eb8f2eff368fc62a7b67480fd9eb7e9a8 /meta/lib | |
parent | 71db079bc56c7af92106a9265be821b9b30656c4 (diff) | |
download | poky-dd31bcafb86936cee121674b2792129aca639547.tar.gz |
selftest/buildoptions.py: use INHERIT +=
* INHERIT = -> INHERIT +=
(From OE-Core rev: 727566ea0e4d19797ecb4cce5750f78e895f6293)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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): | |||
276 | Test for archiving the work directory and exporting the source files. | 276 | Test for archiving the work directory and exporting the source files. |
277 | """ | 277 | """ |
278 | self.add_command_to_tearDown('cleanup-workdir') | 278 | self.add_command_to_tearDown('cleanup-workdir') |
279 | self.write_config("INHERIT = \"archiver\"\nARCHIVER_MODE[src] = \"original\"\nARCHIVER_MODE[srpm] = \"1\"") | 279 | self.write_config("INHERIT += \"archiver\"\nARCHIVER_MODE[src] = \"original\"\nARCHIVER_MODE[srpm] = \"1\"") |
280 | res = bitbake("xcursor-transparent-theme", ignore_status=True) | 280 | res = bitbake("xcursor-transparent-theme", ignore_status=True) |
281 | self.assertEqual(res.status, 0, "\nCouldn't build xcursortransparenttheme.\nbitbake output %s" % res.output) | 281 | self.assertEqual(res.status, 0, "\nCouldn't build xcursortransparenttheme.\nbitbake output %s" % res.output) |
282 | pkgs_path = g.glob(str(self.builddir) + "/tmp/deploy/sources/allarch*/xcurs*") | 282 | pkgs_path = g.glob(str(self.builddir) + "/tmp/deploy/sources/allarch*/xcurs*") |