diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-18 17:12:55 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-20 12:26:26 +0000 |
commit | d32d08fd4891bc6998349875eb2deb36bb7322c8 (patch) | |
tree | 06d78905ccb8ce04b8718b282650abe9c53151dc | |
parent | f857b62b8ac78b49b1cbb98c021ad19eb6d04508 (diff) | |
download | poky-d32d08fd4891bc6998349875eb2deb36bb7322c8.tar.gz |
ptest: Disable for native recipes
We don't use or otherwise care about ptest for native recipes. Its therefore
pointless to take the performance hit for them and we can disable them.
(From OE-Core rev: f3d35bb4719d0b8f8e6fc5976e9dbfc0e2019c2e)
(From OE-Core rev: 16dd4cd5564a19b0a221661205430e01c35673af)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/ptest.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass index 98c913922d..ec10f80e68 100644 --- a/meta/classes/ptest.bbclass +++ b/meta/classes/ptest.bbclass | |||
@@ -7,6 +7,7 @@ FILES_${PN}-ptest = "${PTEST_PATH}" | |||
7 | SECTION_${PN}-ptest = "devel" | 7 | SECTION_${PN}-ptest = "devel" |
8 | ALLOW_EMPTY_${PN}-ptest = "1" | 8 | ALLOW_EMPTY_${PN}-ptest = "1" |
9 | PTEST_ENABLED = "${@base_contains('DISTRO_FEATURES', 'ptest', '1', '0', d)}" | 9 | PTEST_ENABLED = "${@base_contains('DISTRO_FEATURES', 'ptest', '1', '0', d)}" |
10 | PTEST_ENABLED_class-native = "" | ||
10 | RDEPENDS_${PN}-ptest_virtclass-native = "" | 11 | RDEPENDS_${PN}-ptest_virtclass-native = "" |
11 | RDEPENDS_${PN}-ptest_virtclass-nativesdk = "" | 12 | RDEPENDS_${PN}-ptest_virtclass-nativesdk = "" |
12 | 13 | ||