mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] iptables.make: Make .so file installation and copying follow CROSS_LIB_DIR.
@ 2021-05-19 10:08 Christian Melki
  2021-05-27  6:45 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2021-05-19 10:08 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/iptables.make | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/rules/iptables.make b/rules/iptables.make
index 13b28cde9..391a95af0 100644
--- a/rules/iptables.make
+++ b/rules/iptables.make
@@ -48,7 +48,7 @@ IPTABLES_CONF_OPT	:= \
 	--$(call ptx/endis, PTXCONF_IPTABLES_NFTABLES_COMPAT)-nftables \
 	--disable-connlabel \
 	--with-kernel=$(KERNEL_HEADERS_DIR) \
-	--with-xtlibdir=/usr/lib
+	--with-xtlibdir=/usr/$(CROSS_LIB_DIR)
 
 # ----------------------------------------------------------------------------
 # Install
@@ -81,28 +81,28 @@ ifdef PTXCONF_IPTABLES_LIBIPQ
 	@$(call install_lib, iptables, 0, 0, 0644, libipq)
 endif
 
-	@cd $(IPTABLES_PKGDIR)/usr/lib && \
+	@cd $(IPTABLES_PKGDIR)/usr/$(CROSS_LIB_DIR) && \
 		for file in libxt_*.so; do \
 			$(call install_copy, iptables, 0, 0, 0644, -,\
-				/usr/lib/$$file); \
+				/usr/$(CROSS_LIB_DIR)/$$file); \
 		done
 
 ifdef PTXCONF_IPTABLES_IPV6
 #	# install the IPv6 relevant shared libraries
-	@cd $(IPTABLES_PKGDIR)/usr/lib && \
+	@cd $(IPTABLES_PKGDIR)/usr/$(CROSS_LIB_DIR) && \
 		for file in libip6t_*.so; do \
 			$(call install_copy, iptables, 0, 0, 0644, -, \
-				/usr/lib/$$file); \
+				/usr/$(CROSS_LIB_DIR)/$$file); \
 		done
 	@$(call install_lib, iptables, 0, 0, 0644, libip6tc)
 endif
 
 ifdef PTXCONF_IPTABLES_IPV4
 #	# install the IPv4 relevant shared libraries
-	@cd $(IPTABLES_PKGDIR)/usr/lib && \
+	@cd $(IPTABLES_PKGDIR)/usr/$(CROSS_LIB_DIR) && \
 		for file in libipt_*.so; do \
 			$(call install_copy, iptables, 0, 0, 0644, -,\
-				/usr/lib/$$file); \
+				/usr/$(CROSS_LIB_DIR)/$$file); \
 		done
 	@$(call install_lib, iptables, 0, 0, 0644, libip4tc)
 endif
-- 
2.31.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-05-27  6:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-19 10:08 [ptxdist] [PATCH] iptables.make: Make .so file installation and copying follow CROSS_LIB_DIR Christian Melki
2021-05-27  6:45 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox