[openssl-commits] [tools] master update

Rich Salz rsalz at openssl.org
Thu Jul 12 16:22:43 UTC 2018


The branch master has been updated
       via  5f62625fdbc9dba7d402ea9d5ee91f5b8280df50 (commit)
      from  805106fc21b3bb4337c68f736fe43518344862a8 (commit)


- Log -----------------------------------------------------------------
commit 5f62625fdbc9dba7d402ea9d5ee91f5b8280df50
Author: Pauli <paul.dale at oracle.com>
Date:   Thu Jul 12 12:22:20 2018 -0400

    Export CC variable
    
    The default for CC wasn't exporting the environment variable.  Likewise,
    the variable wasn't used.  Hence it didn't take effect.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/20)

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

Summary of changes:
 review-tools/opensslbuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/review-tools/opensslbuild b/review-tools/opensslbuild
index 404a04e..e9abfb3 100755
--- a/review-tools/opensslbuild
+++ b/review-tools/opensslbuild
@@ -21,7 +21,7 @@ test "$1" = "-x" && {
 }
 
 # Set compiler
-test "$CC" = "" && CC="ccache clang-3.6"
+test "$CC" = "" && export CC="ccache clang-3.6"
 
 # Set basic config arguments
 CONFIGARGS="-d --strict-warnings --prefix=/usr/local/openssl"


More information about the openssl-commits mailing list