[oe-commits] Ross Burton : dbus: don't use PTEST_ENABLED as recipe doesn' t inherit ptest

git at git.openembedded.org git at git.openembedded.org
Fri Dec 5 18:01:57 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: 7ee1da8126f1d4957e533cc26696e85c5a6de4bb
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=7ee1da8126f1d4957e533cc26696e85c5a6de4bb

Author: Ross Burton <ross.burton at intel.com>
Date:   Tue Dec  2 15:41:10 2014 +0000

dbus: don't use PTEST_ENABLED as recipe doesn't inherit ptest

As this recipe's ptest support is merely a shim to pull in dbus-test-ptest it
doesn't inherit ptest.  This means that PTEST_ENABLED isn't ever set, so check
DISTRO_FEATURES directly.

Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/recipes-core/dbus/dbus.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
index d38ba7e..fb5d017 100644
--- a/meta/recipes-core/dbus/dbus.inc
+++ b/meta/recipes-core/dbus/dbus.inc
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=10dded3b58148f3f1fd804b26354af3e \
 DEPENDS = "expat virtual/libintl"
 RDEPENDS_dbus_class-native = ""
 RDEPENDS_dbus_class-nativesdk = ""
-PACKAGES += "${@bb.utils.contains('PTEST_ENABLED', '1', 'dbus-ptest', '', d)}"
+PACKAGES += "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', '${PN}-ptest', '', d)}"
 ALLOW_EMPTY_dbus-ptest = "1"
 RDEPENDS_dbus-ptest_class-target = "dbus-test-ptest"
 



More information about the Openembedded-commits mailing list