Avoid "no config file" warning message
authorRich Salz <rsalz@openssl.org>
Tue, 21 Apr 2015 20:57:29 +0000 (16:57 -0400)
committerRich Salz <rsalz@openssl.org>
Tue, 21 Apr 2015 20:57:59 +0000 (16:57 -0400)
Set config to /dev/null when doing make rehash.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Makefile.org

index de08a47c2083c99f105ec1943da49a026a92b50b..301b4d3cac040649ce7cc4b8c713845baaaa1e48 100644 (file)
@@ -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