diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-12-14 09:56:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-19 17:54:52 +0000 |
commit | 8c577660151814a23d89811aeb8ded2663854773 (patch) | |
tree | cf9f839d9a64a54f7bb9e98f6f09d08cb0017029 /meta/recipes-extended/iptables | |
parent | 3d154ae119806021fa04698868fdddc472823a8a (diff) | |
download | poky-8c577660151814a23d89811aeb8ded2663854773.tar.gz |
iptables: include /usr/share/xtables/pf.os in PN if it's build
* when libnfnetlink is available (provided by
meta-networking/recipes-filter/libnfnetlink/libnfnetlink_1.0.1.bb
it's autodetected and utils subdirectory with pf.os is used.
* unfortunately there isn't configure switch to explicitly disable
libnfnetlink and it's also in different layer so we cannot add it to
DEPENDS
* it's undeterminitic, but pf.os is the only difference AFAIK, so not
worth patching configure switch
* fixes:
iptables-1.4.15: iptables: Files/directories were installed but not
shipped
/usr/share/xtables
/usr/share/xtables/pf.os
(From OE-Core rev: b789152b56ddbd6761989327cae558558401fd46)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/iptables')
-rw-r--r-- | meta/recipes-extended/iptables/iptables_1.4.15.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/iptables/iptables_1.4.15.bb b/meta/recipes-extended/iptables/iptables_1.4.15.bb index a6297f392b..d556c771ee 100644 --- a/meta/recipes-extended/iptables/iptables_1.4.15.bb +++ b/meta/recipes-extended/iptables/iptables_1.4.15.bb | |||
@@ -7,7 +7,7 @@ LICENSE = "GPLv2+" | |||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263\ | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263\ |
8 | file://iptables/iptables.c;firstline=13;endline=25;md5=f1028f2401da1c120df27594b2be50ef" | 8 | file://iptables/iptables.c;firstline=13;endline=25;md5=f1028f2401da1c120df27594b2be50ef" |
9 | 9 | ||
10 | PR = "r0" | 10 | PR = "r1" |
11 | 11 | ||
12 | RRECOMMENDS_${PN} = "kernel-module-x-tables \ | 12 | RRECOMMENDS_${PN} = "kernel-module-x-tables \ |
13 | kernel-module-ip-tables \ | 13 | kernel-module-ip-tables \ |
@@ -18,7 +18,7 @@ RRECOMMENDS_${PN} = "kernel-module-x-tables \ | |||
18 | kernel-module-nf-conntrack-ipv4 \ | 18 | kernel-module-nf-conntrack-ipv4 \ |
19 | kernel-module-nf-nat \ | 19 | kernel-module-nf-nat \ |
20 | kernel-module-ipt-masquerade" | 20 | kernel-module-ipt-masquerade" |
21 | FILES_${PN} =+ "${libdir}/xtables/" | 21 | FILES_${PN} =+ "${libdir}/xtables/ ${datadir}/xtables" |
22 | FILES_${PN}-dbg =+ "${libdir}/xtables/.debug" | 22 | FILES_${PN}-dbg =+ "${libdir}/xtables/.debug" |
23 | 23 | ||
24 | SRC_URI = "http://netfilter.org/projects/iptables/files/iptables-${PV}.tar.bz2 \ | 24 | SRC_URI = "http://netfilter.org/projects/iptables/files/iptables-${PV}.tar.bz2 \ |