diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2016-08-22 17:06:04 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-03 23:45:44 +0100 |
commit | a597000cb66163b7d75c578bfa1e6879229bad58 (patch) | |
tree | f521e65b0700388de3fba4965bd8e363f7f65e05 | |
parent | b7e045d0cb3d06b9e197ec985fc82c373f006d5c (diff) | |
download | openembedded-core-a597000cb66163b7d75c578bfa1e6879229bad58.tar.gz openembedded-core-a597000cb66163b7d75c578bfa1e6879229bad58.tar.bz2 openembedded-core-a597000cb66163b7d75c578bfa1e6879229bad58.zip |
psmisc: control ipv6 support based on DISTRO_FEATURES
Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/psmisc/psmisc.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc index 68e06561f9..98a84709a1 100644 --- a/meta/recipes-extended/psmisc/psmisc.inc +++ b/meta/recipes-extended/psmisc/psmisc.inc @@ -15,6 +15,9 @@ S = "${WORKDIR}/psmisc-${PV}" inherit autotools gettext +PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}" +PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," + ALLOW_EMPTY_${PN} = "1" PACKAGES =+ "fuser fuser-doc killall killall-doc pstree pstree-doc" |