]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
51ed66ed24c0c4484759547e2d7f6f0486f1bc98
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 From d4ed0c741fc789bb09d977d74d30875fdd50d08b Mon Sep 17 00:00:00 2001
2 From: Jan Engelhardt <jengelh@inai.de>
3 Date: Wed, 3 Jun 2020 15:38:48 +0200
4 Subject: [PATCH] build: resolve iptables-apply not getting installed
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 ip6tables-apply gets installed but iptables-apply does not.
10 That is wrong.
11
12 » make install DESTDIR=$PWD/r
13 » find r -name "*app*"
14 r/usr/local/sbin/ip6tables-apply
15 r/usr/local/share/man/man8/iptables-apply.8
16 r/usr/local/share/man/man8/ip6tables-apply.8
17
18 Fixes: v1.8.5~87
19 Signed-off-by: Jan Engelhardt <jengelh@inai.de>
20 Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
21
22 Upstream-Status: Backport
23 [https://git.netfilter.org/iptables/commit/?id=d4ed0c741fc789bb09d977d74d30875fdd50d08b]
24
25 Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
26 ---
27 iptables/Makefile.am | 2 +-
28 1 file changed, 1 insertion(+), 1 deletion(-)
29
30 diff --git a/iptables/Makefile.am b/iptables/Makefile.am
31 index dc66b3cc..2024dbf5 100644
32 --- a/iptables/Makefile.am
33 +++ b/iptables/Makefile.am
34 @@ -56,7 +56,7 @@ man_MANS = iptables.8 iptables-restore.8 iptables-save.8 \
35 ip6tables-save.8 iptables-extensions.8 \
36 iptables-apply.8 ip6tables-apply.8
37
38 -sbin_SCRIPT = iptables-apply
39 +sbin_SCRIPTS = iptables-apply
40
41 if ENABLE_NFTABLES
42 man_MANS += xtables-nft.8 xtables-translate.8 xtables-legacy.8 \
43 --
44 2.17.1
45