From 98dcd8656d12a701293751f05437041fd52f5984 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Tue, 28 Apr 2009 18:30:06 +0000 Subject: package/openssl: make sure TARGET_CFLAGS are used And remove the unnedded c_rehash binary while we're at it. Patch by Gustavo Zacarias , closes #307. Saves ~250k on PPC with default config (E.G. -Os) --- package/openssl/openssl.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/openssl/openssl.mk b/package/openssl/openssl.mk index cca0afd69..62c2f33bd 100644 --- a/package/openssl/openssl.mk +++ b/package/openssl/openssl.mk @@ -46,6 +46,8 @@ $(OPENSSL_TARGET_CONFIGURE): no-rc5 \ zlib-dynamic \ ) + $(SED) "s:-march=[-a-z0-9] ::" -e "s:-mcpu=[-a-z0-9] ::g" $(OPENSSL_DIR)/Makefile + $(SED) "s:-O[0-9]:$(TARGET_CFLAGS):" $(OPENSSL_DIR)/Makefile touch $@ $(OPENSSL_TARGET_BUILD): @@ -61,9 +63,9 @@ else # libraries gets installed read only, so strip fails for i in $(addprefix $(TARGET_DIR)/usr/lib/,libcrypto.so.* libssl.so.*); \ do chmod +w $$i; $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $$i; done - rm -f $(TARGET_DIR)/usr/bin/c_rehash rm -f $(TARGET_DIR)/usr/bin/openssl endif + rm -f $(TARGET_DIR)/usr/bin/c_rehash ifneq ($(BR2_PACKAGE_OPENSSL_ENGINES),y) rm -rf $(TARGET_DIR)/usr/lib/engines else -- cgit v1.2.3