From 26d57a1a9225db13324d6c699753437da4de910c Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 7 Sep 2015 10:08:38 +0100 Subject: [PATCH] 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 --- Makefile.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1