From: Rich Salz Date: Wed, 29 Apr 2015 01:48:44 +0000 (-0400) Subject: Make "make rehash" quiet X-Git-Tag: OpenSSL_1_1_0-pre1~1254 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bea6cd3e1c551b48007eedbb0cb0f3a8aa473138;p=oweals%2Fopenssl.git Make "make rehash" quiet Don't complain about missing config file. (Got the right env var name this time) Reviewed-by: Richard Levitte --- diff --git a/Makefile.org b/Makefile.org index 301b4d3cac..dcc2c447bc 100644 --- a/Makefile.org +++ b/Makefile.org @@ -438,8 +438,8 @@ rehash.time: certs apps @if [ -z "$(CROSS_COMPILE)" ]; then \ (OPENSSL="`pwd`/util/opensslwrap.sh"; \ [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \ - OPENSSL_DEBUG_MEMORY=on; OPENSSL_CONFIG=/dev/null ; \ - export OPENSSL OPENSSL_DEBUG_MEMORY OPENSSL_CONFIG; \ + OPENSSL_DEBUG_MEMORY=on; OPENSSL_CONF=/dev/null ; \ + export OPENSSL OPENSSL_DEBUG_MEMORY OPENSSL_CONF; \ $(PERL) tools/c_rehash certs/demo) && \ touch rehash.time; \ else :; fi