diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-23 11:34:30 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-23 11:34:30 +0000 |
commit | 2942e440047dcca4ed2933bfea46414666192e5b (patch) | |
tree | 476b96e27ec3ecca14b5602f5d9b9b64c159b20a /package/iptables | |
parent | 926309afdb4d1e8afbca12e4969f17a0bdad9984 (diff) |
- just use the TARGET_CC
Diffstat (limited to 'package/iptables')
-rw-r--r-- | package/iptables/iptables.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/iptables/iptables.mk b/package/iptables/iptables.mk index 68ddc1a7e..82558e1e4 100644 --- a/package/iptables/iptables.mk +++ b/package/iptables/iptables.mk @@ -25,12 +25,12 @@ $(IPTABLES_BUILD_DIR)/.configured: $(IPTABLES_BUILD_DIR)/.unpacked touch $@ $(IPTABLES_BUILD_DIR)/iptables: $(IPTABLES_BUILD_DIR)/.configured - $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(IPTABLES_BUILD_DIR) \ + $(MAKE) CC=$(TARGET_CC) -C $(IPTABLES_BUILD_DIR) \ KERNEL_DIR=$(LINUX_HEADERS_DIR) PREFIX=/usr \ COPT_FLAGS="$(TARGET_CFLAGS)" $(TARGET_DIR)/usr/sbin/iptables: $(IPTABLES_BUILD_DIR)/iptables - $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(IPTABLES_BUILD_DIR) \ + $(MAKE) CC=$(TARGET_CC) -C $(IPTABLES_BUILD_DIR) \ KERNEL_DIR=$(LINUX_HEADERS_DIR) PREFIX=/usr \ COPT_FLAGS="$(TARGET_CFLAGS)" \ DESTDIR=$(TARGET_DIR) install |