From: Rich Salz Date: Tue, 21 Apr 2015 20:57:29 +0000 (-0400) Subject: Avoid "no config file" warning message X-Git-Tag: OpenSSL_1_1_0-pre1~1289 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b95de5ecdea29f0ac658b6ea86d0cd2d77efcb13;p=openssl Avoid "no config file" warning message Set config to /dev/null when doing make rehash. Reviewed-by: Richard Levitte --- diff --git a/Makefile.org b/Makefile.org index de08a47c20..301b4d3cac 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; \ - export OPENSSL OPENSSL_DEBUG_MEMORY; \ + OPENSSL_DEBUG_MEMORY=on; OPENSSL_CONFIG=/dev/null ; \ + export OPENSSL OPENSSL_DEBUG_MEMORY OPENSSL_CONFIG; \ $(PERL) tools/c_rehash certs/demo) && \ touch rehash.time; \ else :; fi