[openssl-commits] [openssl] master update

Matt Caswell matt at openssl.org
Mon Sep 7 09:33:58 UTC 2015


The branch master has been updated
       via  26d57a1a9225db13324d6c699753437da4de910c (commit)
      from  62fdf4ee6c55d6d2212d868b02fcab51c6d4080a (commit)


- Log -----------------------------------------------------------------
commit 26d57a1a9225db13324d6c699753437da4de910c
Author: Matt Caswell <matt at openssl.org>
Date:   Mon Sep 7 10:08:38 2015 +0100

    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 <ben at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 Makefile.org | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.org b/Makefile.org
index 30d292a..2f8e472 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
 


More information about the openssl-commits mailing list