From: Mike Baker Date: Fri, 20 Aug 2004 06:36:24 +0000 (+0000) Subject: tracked down sstrip bug to strip being called from squashfs X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=fdd1121bd52345d82d56029410a3f648aaeec10e;p=15.05%2Fopenwrt.git tracked down sstrip bug to strip being called from squashfs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@143 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/obsolete-buildroot/make/squashfsroot.mk b/obsolete-buildroot/make/squashfsroot.mk index 5f5233f2b1..3e1b34a834 100644 --- a/obsolete-buildroot/make/squashfsroot.mk +++ b/obsolete-buildroot/make/squashfsroot.mk @@ -36,7 +36,7 @@ squashfs-dirclean: squashfsroot: squashfs #-@find $(TARGET_DIR)/lib -type f -name \*.so\* | xargs $(STRIP) --strip-unneeded 2>/dev/null || true; - -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true; + -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STAGING_DIR)/bin/sstrip 2>/dev/null || true; @rm -rf $(TARGET_DIR)/usr/man @rm -rf $(TARGET_DIR)/usr/info #$(SQUASHFS_DIR)/squashfs-tools/mksquashfs -q -D $(SOURCE_DIR)/device_table.txt $(TARGET_DIR) $(IMAGE)