From: Ulf Möller <ulf@openssl.org>
Date: Wed, 8 Sep 1999 16:14:52 +0000 (+0000)
Subject: Use proper flags to build the testapps (default CC value causes confusion
X-Git-Tag: OpenSSL_0_9_5beta1~536
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6882a964460cfbe350219236fb6aa141eb4f1c97;p=oweals%2Fopenssl.git

Use proper flags to build the testapps (default CC value causes confusion
on Solaris)
---

diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl
index 17caee18fa..96f08ba798 100644
--- a/crypto/Makefile.ssl
+++ b/crypto/Makefile.ssl
@@ -58,8 +58,8 @@ buildinf.h: ../Makefile.ssl
 	echo "#endif" ) >buildinf.h
 
 testapps:
-	(cd des && make des)
-	(cd pkcs7 && make testapps)
+	(cd des && make des CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}')
+	(cd pkcs7 && make testapps CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}')
 
 subdirs:
 	@for i in $(SDIRS) ;\