[openssl] master update

Richard Levitte levitte at openssl.org
Fri Nov 29 08:49:33 UTC 2019


The branch master has been updated
       via  fbd03b1c5984d1dd42ef99e1a5da70ed587f3380 (commit)
      from  e9b95e42fbae668cb605287fa462a0d5f58b9caf (commit)


- Log -----------------------------------------------------------------
commit fbd03b1c5984d1dd42ef99e1a5da70ed587f3380
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Nov 25 12:53:19 2019 +0100

    configdata.pm.in, util/dofile.pl: load 'platform' unconditionally
    
    The 'platform' module handles defaults fine, there's no need to add
    extra conditions on it being loaded.
    
    Fixes #10513
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/10514)

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

Summary of changes:
 configdata.pm.in | 2 --
 util/dofile.pl   | 2 --
 2 files changed, 4 deletions(-)

diff --git a/configdata.pm.in b/configdata.pm.in
index 6e5c1ad4f6..312122686f 100644
--- a/configdata.pm.in
+++ b/configdata.pm.in
@@ -124,8 +124,6 @@ unless (caller) {
         my $prepend = <<"_____";
 use File::Spec::Functions;
 use lib '{- sourcedir('util', 'perl') -}';
-_____
-        $prepend .= <<"_____" if defined $target{perl_platform};
 use lib '{- sourcedir('Configurations') -}';
 use lib '{- $config{builddir} -}';
 use platform;
diff --git a/util/dofile.pl b/util/dofile.pl
index a82b987eba..57243880d4 100644
--- a/util/dofile.pl
+++ b/util/dofile.pl
@@ -63,8 +63,6 @@ sub errorcallback {
 
 my $prepend = <<"_____";
 use File::Spec::Functions;
-_____
-$prepend .= <<"_____" if defined $target{perl_platform};
 use lib "$FindBin::Bin/../Configurations";
 use lib '$config{builddir}';
 use platform;


More information about the openssl-commits mailing list