aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-04-21 16:57:29 -0400
committerRich Salz <rsalz@openssl.org>2015-04-21 16:57:59 -0400
commitb95de5ecdea29f0ac658b6ea86d0cd2d77efcb13 (patch)
treede0f57a66d7fde842a1a68984530e87dc99ecb61 /Makefile.org
parent3dca57f8cadbca2eb6dec93bf12f486acfd274a3 (diff)
downloadopenssl-b95de5ecdea29f0ac658b6ea86d0cd2d77efcb13.tar.gz
Avoid "no config file" warning message
Set config to /dev/null when doing make rehash. 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 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