[openssl-commits] [openssl] OpenSSL_1_1_1-stable update

Richard Levitte levitte at openssl.org
Mon Feb 4 20:38:25 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  453eccd63ad6ba19f6a3fcac37df05daf6cc1021 (commit)
      from  63b596e38df603c983da188c6ace3e335a116730 (commit)


- Log -----------------------------------------------------------------
commit 453eccd63ad6ba19f6a3fcac37df05daf6cc1021
Author: batist73 <agrigoryev at gmail.com>
Date:   Sat Feb 2 13:45:06 2019 +0300

    Android build: fix usage of NDK home variable ($ndk_var)
    
    CLA: trivial
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/8153)
    
    (cherry picked from commit adc7e221f12462c6e10bc7c2c7afaf52490cb292)

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

Summary of changes:
 Configurations/15-android.conf | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Configurations/15-android.conf b/Configurations/15-android.conf
index c94da41..7b496a4 100644
--- a/Configurations/15-android.conf
+++ b/Configurations/15-android.conf
@@ -24,7 +24,8 @@
 
             my $ndk_var;
             my $ndk;
-            foreach $ndk_var (qw(ANDROID_NDK_HOME ANDROID_NDK)) {
+            foreach (qw(ANDROID_NDK_HOME ANDROID_NDK)) {
+                $ndk_var = $_;
                 $ndk = $ENV{$ndk_var};
                 last if defined $ndk;
             }


More information about the openssl-commits mailing list