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-Tag: reboot~33565 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8db2407c74ba037dd1ae2c36dcef71bc20323905;p=oweals%2Fopenwrt.git tracked down sstrip bug to strip being called from squashfs SVN-Revision: 143 --- 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)