diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-14 12:10:18 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-14 12:10:18 +0000 |
commit | 2534b312141c709f17793002e553c7a255386e96 (patch) | |
tree | 5f627363fed64dd4d5ecedc1aa878b86731dbd81 /make/uclibc_toolchain.mk | |
parent | 1792b840c8efe18c82c40a636f065083aebbeab9 (diff) |
Some more toolchain building cleanups
Diffstat (limited to 'make/uclibc_toolchain.mk')
-rw-r--r-- | make/uclibc_toolchain.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/uclibc_toolchain.mk b/make/uclibc_toolchain.mk index 178b25293..16152f7fa 100644 --- a/make/uclibc_toolchain.mk +++ b/make/uclibc_toolchain.mk @@ -378,8 +378,8 @@ $(BUILD_DIR)/.shuffled: $(GCC_BUILD_DIR2)/.fixedup touch $(BUILD_DIR)/.shuffled $(BUILD_DIR)/.stripped: $(BUILD_DIR)/.shuffled - -strip --strip-all -R .note -R .comment $(STAGING_DIR)/bin/* - -$(STAGING_DIR)/bin/$(ARCH)-uclibc-strip --strip-unneeded \ + -$(STRIP) $(STAGING_DIR)/bin/* + -$(TARGET_CROSS)strip --strip-unneeded \ -R .note -R .comment $(STAGING_DIR)/lib/*.so*; touch $(BUILD_DIR)/.stripped |