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 /target/cramfs/cramfs.mk | |
parent | 4ad141c338ef1f720d69b8d56a2be336128403e8 (diff) | |
download | buildroot-novena-14a71561a388196edbcddfa72d281e911c06266f.tar.gz buildroot-novena-14a71561a388196edbcddfa72d281e911c06266f.zip |
- just use the strip binary to avoid confusing libtool (quotes)
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
Diffstat (limited to 'target/cramfs/cramfs.mk')
-rw-r--r-- | target/cramfs/cramfs.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/cramfs/cramfs.mk b/target/cramfs/cramfs.mk index 9a5e22cf1..d7f358d5c 100644 --- a/target/cramfs/cramfs.mk +++ b/target/cramfs/cramfs.mk @@ -48,8 +48,8 @@ endif CRAMFS_TARGET=$(IMAGE).cramfs cramfsroot: host-fakeroot makedevs cramfs - #-@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)/lib -type f -name \*.so\* | xargs $(STRIPCMD) --strip-unneeded 2>/dev/null || true + -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIPCMD) 2>/dev/null || true ifneq ($(BR2_HAVE_MANPAGES),y) @rm -rf $(TARGET_DIR)/usr/man endif |