From: Matt Caswell Date: Mon, 7 Sep 2015 09:08:38 +0000 (+0100) Subject: Fix build break due to rehash command X-Git-Tag: OpenSSL_1_1_0-pre1~690 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=26d57a1a9225db13324d6c699753437da4de910c;p=oweals%2Fopenssl.git Fix build break due to rehash command The build was breaking due to a Makefile recipe expecting an openssl version to be on the PATH with support for the rehash command. Reviewed-by: Ben Laurie --- diff --git a/Makefile.org b/Makefile.org index 30d292a434..2f8e472ccf 100644 --- a/Makefile.org +++ b/Makefile.org @@ -428,7 +428,7 @@ rehash.time: certs apps [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \ OPENSSL_DEBUG_MEMORY=on; OPENSSL_CONF=/dev/null ; \ export OPENSSL OPENSSL_DEBUG_MEMORY OPENSSL_CONF; \ - openssl rehash certs/demo) && \ + $$OPENSSL rehash certs/demo) && \ touch rehash.time; \ else :; fi