diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-08-20 22:02:15 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-08-20 22:02:15 +0000 |
commit | 54da0f9e4ba892d2613d4f0d0c4bf4eecdcfd0a4 (patch) | |
tree | 8b8c5fe9a3f720caba63c0e8bf6687e520f9a76d /obsolete-buildroot/make/openwrt.mk | |
parent | 25dc41707997f9818876c8ec2cd799fbf6ea7795 (diff) |
fix dependency order for sstrip
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@144 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'obsolete-buildroot/make/openwrt.mk')
-rw-r--r-- | obsolete-buildroot/make/openwrt.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/obsolete-buildroot/make/openwrt.mk b/obsolete-buildroot/make/openwrt.mk index b8c2c9636e..38fa958758 100644 --- a/obsolete-buildroot/make/openwrt.mk +++ b/obsolete-buildroot/make/openwrt.mk @@ -202,8 +202,7 @@ openwrt-rootprep: ###################################################################### -openwrt-prune: $(STAGING_DIR)/bin/sstrip openwrt-base -# -find $(TARGET_DIR) -type f -perm +111 -exec $(STAGING_DIR)/bin/sstrip {} \; +openwrt-prune: openwrt-base $(STAGING_DIR)/bin/sstrip # remove unneeded uClibc libs rm -rf $(TARGET_DIR)/lib/libthread_db* rm -rf $(TARGET_DIR)/lib/libpthread* @@ -214,6 +213,7 @@ openwrt-prune: $(STAGING_DIR)/bin/sstrip openwrt-base rm -f $(TARGET_DIR)/usr/sbin/iptables-save rm -f $(TARGET_DIR)/usr/sbin/iptables-restore rm -f $(TARGET_DIR)/usr/sbin/ip6tables + -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STAGING_DIR)/bin/sstrip 2>/dev/null || true; ###################################################################### |