summaryrefslogtreecommitdiff
path: root/util/perl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-03-03 00:06:52 +0100
committerRichard Levitte <levitte@openssl.org>2020-06-28 18:34:35 +0200
commit081436bf732c0889b2649426df4e1c23c671d6d7 (patch)
treeeb1f9073258303a8565f8ac50da00f5f49b61204 /util/perl
parenta3310b182ca3952c2876792b35035b54a4c77713 (diff)
downloadopenssl-new-081436bf732c0889b2649426df4e1c23c671d6d7.tar.gz
util/perl/OpenSSL/config.pm, Configure: move check of target with compiler
Previously, ./config would check if "$target-$CC", then "$target" exists and choose the one that does. This is now moved to Configure. Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11230)
Diffstat (limited to 'util/perl')
-rwxr-xr-xutil/perl/OpenSSL/config.pm18
1 files changed, 0 insertions, 18 deletions
diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm
index 62fc5ce312..5e0372ac2e 100755
--- a/util/perl/OpenSSL/config.pm
+++ b/util/perl/OpenSSL/config.pm
@@ -867,24 +867,6 @@ EOF
return $OUT;
}
-# Append $CC to the target if that's in the Config list.
-sub check_target_exists {
- my $OUT = shift;
- my %table;
-
- open T, "$PERL $WHERE/Configure LIST|" or die "Can't get LIST, $!";
- while ( <T> ) {
- chop;
- $table{$_} = 1;
- }
- close T;
- return "$OUT-$CC" if defined $table{"$OUT-$CC"};
- return "$OUT" if defined $table{$OUT};
- print "This system ($OUT) is not supported. See INSTALL for details.\n";
- exit 1;
-}
-
-
###
### MAIN PROCESSING
###