aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-04-28 21:48:44 -0400
committerRich Salz <rsalz@openssl.org>2015-04-28 21:48:44 -0400
commitbea6cd3e1c551b48007eedbb0cb0f3a8aa473138 (patch)
tree71f243c1c9ccc02d119886735409d1a7cd50d24a /Makefile.org
parent2d29e2df0c9040e139d68c8659ee0342a6ac3dd1 (diff)
downloadopenssl-bea6cd3e1c551b48007eedbb0cb0f3a8aa473138.tar.gz
Make "make rehash" quiet
Don't complain about missing config file. (Got the right env var name this time) Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org4
1 files changed, 2 insertions, 2 deletions
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