diff options
author | Ross Burton <ross.burton@intel.com> | 2016-04-22 20:48:50 +0100 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-05-05 11:41:28 -0400 |
commit | 275b6c30fbe4f2e6d8c607e9f2eedd5c230c0802 (patch) | |
tree | 4fd20a242b848ec8497066801b86706de3defdce /meta-networking/recipes-protocols/quagga | |
parent | 7a9c626092c7d3b10206c7ca4ea2827cca9cba4f (diff) | |
download | meta-openembedded-275b6c30fbe4f2e6d8c607e9f2eedd5c230c0802.tar.gz |
meta-networking: use bb.utils.contains() instead of base_contains()
base_contains() is a compatibility wrapper and may warn in the future, so
replace all instances with bb.utils.contains().
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-protocols/quagga')
-rw-r--r-- | meta-networking/recipes-protocols/quagga/quagga.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta-networking/recipes-protocols/quagga/quagga.inc b/meta-networking/recipes-protocols/quagga/quagga.inc index de78e2679..4244fdf9e 100644 --- a/meta-networking/recipes-protocols/quagga/quagga.inc +++ b/meta-networking/recipes-protocols/quagga/quagga.inc | |||
@@ -9,8 +9,8 @@ HOMEPAGE = "http://www.nongnu.org/quagga/" | |||
9 | SECTION = "net" | 9 | SECTION = "net" |
10 | LICENSE = "GPL-2.0 & LGPL-2.0" | 10 | LICENSE = "GPL-2.0 & LGPL-2.0" |
11 | DEPENDS = "readline ncurses perl-native" | 11 | DEPENDS = "readline ncurses perl-native" |
12 | DEPENDS += "${@base_contains('DISTRO_FEATURES', 'snmp', 'net-snmp', '', d)}" | 12 | DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'snmp', 'net-snmp', '', d)}" |
13 | SNMP_CONF="${@base_contains('DISTRO_FEATURES', 'snmp', '--enable-snmp', '', d)}" | 13 | SNMP_CONF="${@bb.utils.contains('DISTRO_FEATURES', 'snmp', '--enable-snmp', '', d)}" |
14 | 14 | ||
15 | LIC_FILES_CHKSUM = "file://COPYING;md5=81bcece21748c91ba9992349a91ec11d \ | 15 | LIC_FILES_CHKSUM = "file://COPYING;md5=81bcece21748c91ba9992349a91ec11d \ |
16 | file://COPYING.LIB;md5=01ef24401ded36cd8e5d18bfe947240c" | 16 | file://COPYING.LIB;md5=01ef24401ded36cd8e5d18bfe947240c" |
@@ -41,7 +41,7 @@ SRC_URI = "${SAVANNAH_GNU_MIRROR}/quagga${QUAGGASUBDIR}/quagga-${PV}.tar.gz; \ | |||
41 | file://zebra.service \ | 41 | file://zebra.service \ |
42 | " | 42 | " |
43 | 43 | ||
44 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}" | 44 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}" |
45 | PACKAGECONFIG[cap] = "--enable-capabilities,--disable-capabilities,libcap" | 45 | PACKAGECONFIG[cap] = "--enable-capabilities,--disable-capabilities,libcap" |
46 | PACKAGECONFIG[pam] = "--with-libpam, --without-libpam, libpam" | 46 | PACKAGECONFIG[pam] = "--with-libpam, --without-libpam, libpam" |
47 | 47 | ||
@@ -62,7 +62,7 @@ EXTRA_OECONF = "--sysconfdir=${sysconfdir}/quagga \ | |||
62 | --enable-exampledir=${docdir}/quagga/examples/ \ | 62 | --enable-exampledir=${docdir}/quagga/examples/ \ |
63 | --enable-vtysh \ | 63 | --enable-vtysh \ |
64 | --enable-isisd \ | 64 | --enable-isisd \ |
65 | ${@base_contains('DISTRO_FEATURES', 'sysvinit', '--enable-watchquagga', '--disable-watchquagga', d)} \ | 65 | ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', '--enable-watchquagga', '--disable-watchquagga', d)} \ |
66 | --enable-ospf-te \ | 66 | --enable-ospf-te \ |
67 | --enable-opaque-lsa \ | 67 | --enable-opaque-lsa \ |
68 | --enable-ospfclient=yes \ | 68 | --enable-ospfclient=yes \ |
@@ -125,7 +125,7 @@ do_install () { | |||
125 | fi | 125 | fi |
126 | done | 126 | done |
127 | 127 | ||
128 | if ${@base_contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 128 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
129 | install -d ${D}${sysconfdir}/tmpfiles.d | 129 | install -d ${D}${sysconfdir}/tmpfiles.d |
130 | echo "d /var/run/quagga 0755 quagga quagga -" \ | 130 | echo "d /var/run/quagga 0755 quagga quagga -" \ |
131 | > ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf | 131 | > ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf |
@@ -162,7 +162,7 @@ pkg_postinst_${PN} () { | |||
162 | # Split into a main package and separate per-protocol packages | 162 | # Split into a main package and separate per-protocol packages |
163 | PACKAGE_BEFORE_PN = "${PN}-ospfd ${PN}-ospf6d ${PN}-babeld ${PN}-bgpd \ | 163 | PACKAGE_BEFORE_PN = "${PN}-ospfd ${PN}-ospf6d ${PN}-babeld ${PN}-bgpd \ |
164 | ${PN}-ripd ${PN}-ripngd ${PN}-isisd \ | 164 | ${PN}-ripd ${PN}-ripngd ${PN}-isisd \ |
165 | ${PN}-ospfclient ${@base_contains('DISTRO_FEATURES', 'sysvinit', '${PN}-watchquagga', '', d)}" | 165 | ${PN}-ospfclient ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', '${PN}-watchquagga', '', d)}" |
166 | 166 | ||
167 | RDEPENDS_${PN} += "${PN}-babeld ${PN}-bgpd ${PN}-isisd ${PN}-ospf6d ${PN}-ospfd ${PN}-ripd ${PN}-ripngd" | 167 | RDEPENDS_${PN} += "${PN}-babeld ${PN}-bgpd ${PN}-isisd ${PN}-ospf6d ${PN}-ospfd ${PN}-ripd ${PN}-ripngd" |
168 | 168 | ||