diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-01 16:15:31 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-01 16:15:31 +0000 |
commit | 14a71561a388196edbcddfa72d281e911c06266f (patch) | |
tree | f9d8c334412e82c05aad398daefdee7d6bfea5e0 /package/iptables/iptables.mk | |
parent | 4ad141c338ef1f720d69b8d56a2be336128403e8 (diff) |
- just use the strip binary to avoid confusing libtool (quotes)
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
Diffstat (limited to 'package/iptables/iptables.mk')
-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 4702bee7f..9d2567097 100644 --- a/package/iptables/iptables.mk +++ b/package/iptables/iptables.mk @@ -40,8 +40,8 @@ $(TARGET_DIR)/usr/sbin/iptables: $(IPTABLES_BUILD_DIR)/iptables INCDIR="\$$(PREFIX)/include" \ MANDIR="\$$(PREFIX)/share/man" \ DESTDIR=$(TARGET_DIR) install - $(STRIP) $(TARGET_DIR)/usr/sbin/iptables* - $(STRIP) $(TARGET_DIR)/usr/lib/iptables/*.so + $(STRIPCMD) $(TARGET_DIR)/usr/sbin/iptables* + $(STRIPCMD) $(TARGET_DIR)/usr/lib/iptables/*.so ifneq ($(BR2_HAVE_MANPAGES),y) rm -rf $(TARGET_DIR)/usr/share/man endif |