Avoid "no config file" warning message
Set config to /dev/null when doing make rehash. Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
3dca57f8ca
commit
b95de5ecde
1 changed files with 2 additions and 2 deletions
|
@ -438,8 +438,8 @@ rehash.time: certs apps
|
||||||
@if [ -z "$(CROSS_COMPILE)" ]; then \
|
@if [ -z "$(CROSS_COMPILE)" ]; then \
|
||||||
(OPENSSL="`pwd`/util/opensslwrap.sh"; \
|
(OPENSSL="`pwd`/util/opensslwrap.sh"; \
|
||||||
[ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
|
[ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
|
||||||
OPENSSL_DEBUG_MEMORY=on; \
|
OPENSSL_DEBUG_MEMORY=on; OPENSSL_CONFIG=/dev/null ; \
|
||||||
export OPENSSL OPENSSL_DEBUG_MEMORY; \
|
export OPENSSL OPENSSL_DEBUG_MEMORY OPENSSL_CONFIG; \
|
||||||
$(PERL) tools/c_rehash certs/demo) && \
|
$(PERL) tools/c_rehash certs/demo) && \
|
||||||
touch rehash.time; \
|
touch rehash.time; \
|
||||||
else :; fi
|
else :; fi
|
||||||
|
|
Loading…
Reference in a new issue