summaryrefslogtreecommitdiffstats
path: root/rules/iptables.make
diff options
context:
space:
mode:
authorBjoern Buerger <b.buerger@pengutronix.de>2005-07-28 13:42:11 +0000
committerBjoern Buerger <b.buerger@pengutronix.de>2005-07-28 13:42:11 +0000
commit14257d79aa830d724e6f4408aa1511ca65ae053d (patch)
tree4423b2ae309ade40ed75974183deec8f355608e1 /rules/iptables.make
parent6fae860ba59568c8e9b1d9ddbd000c7a5169455e (diff)
downloadptxdist-14257d79aa830d724e6f4408aa1511ca65ae053d.tar.gz
ptxdist-14257d79aa830d724e6f4408aa1511ca65ae053d.tar.xz
2005-07-28 Bjoern Buerger <b.buerger@pengutronix.de>
* iptables: fixed install stage; patch by Alexandre Bastos git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.7-trunk@2994 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/iptables.make')
-rw-r--r--rules/iptables.make16
1 files changed, 8 insertions, 8 deletions
diff --git a/rules/iptables.make b/rules/iptables.make
index 55c019016..8b01b0352 100644
--- a/rules/iptables.make
+++ b/rules/iptables.make
@@ -127,17 +127,17 @@ $(STATEDIR)/iptables.targetinstall: $(iptables_targetinstall_deps)
@$(call install_fixup,DEPENDS,)
@$(call install_fixup,DESCRIPTION,missing)
-ifdef $(IPTABLES_INSTALL_IP6TABLES)
- @$(call install_copy, 0, 0, 0755, (IPTABLES_DIR)/ip6tables, /sbin/ip6tables)
+ifdef PTXCONF_IPTABLES_INSTALL_IP6TABLES
+ @$(call install_copy, 0, 0, 0755, $(IPTABLES_DIR)/ip6tables, /sbin/ip6tables)
endif
-ifdef $(IPTABLES_INSTALL_IPTABLES)
- @$(call install_copy, 0, 0, 0755, (IPTABLES_DIR)/iptables, /sbin/iptables)
+ifdef PTXCONF_IPTABLES_INSTALL_IPTABLES
+ @$(call install_copy, 0, 0, 0755, $(IPTABLES_DIR)/iptables, /sbin/iptables)
endif
-ifdef $(IPTABLES_INSTALL_IPTABLES_RESTORE)
- @$(call install_copy, 0, 0, 0755, (IPTABLES_DIR)/iptables-restore, /sbin/iptables-restore)
+ifdef PTXCONF_IPTABLES_INSTALL_IPTABLES_RESTORE
+ @$(call install_copy, 0, 0, 0755, $(IPTABLES_DIR)/iptables-restore, /sbin/iptables-restore)
endif
-ifdef $(IPTABLES_INSTALL_IPTABLES_SAVE)
- @$(call install_copy, 0, 0, 0755, (IPTABLES_DIR)/iptables-save, /sbin/iptables-save)
+ifdef PTXCONF_IPTABLES_INSTALL_IPTABLES_SAVE
+ @$(call install_copy, 0, 0, 0755, $(IPTABLES_DIR)/iptables-save, /sbin/iptables-save)
endif
@$(call install_finish)
touch $@