summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2016-01-27 19:16:38 -0500
committerRich Salz <rsalz@openssl.org>2016-01-29 10:30:57 -0500
commita01dab94622715fe2dd92a6f87a826cef6724e54 (patch)
tree9080f2f53a3c6d8964c0b0c58269ff0ed3c4e14c /Configure
parent8ce4e7e605577cb5818de068e2c6da60901cddba (diff)
Remove x86_gcc_des,x86_gcc_opts
This is a followin from !1738, we no longer need those variables. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure5
1 files changed, 1 insertions, 4 deletions
diff --git a/Configure b/Configure
index ec94edc524..6d36ae1a6b 100755
--- a/Configure
+++ b/Configure
@@ -97,12 +97,8 @@ my $warn_make_depend = 0;
# This adds backtrace information to the memory leak info.
my $memleak_devteam_backtrace = "-rdynamic -DCRYPTO_MDEBUG_BACKTRACE";
-
my $strict_warnings = 0;
-my $x86_gcc_des="";
-my $x86_gcc_opts="";
-
# As for $BSDthreads. Idea is to maintain "collective" set of flags,
# which would cover all BSD flavors. -pthread applies to them all,
# but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
@@ -1669,6 +1665,7 @@ sub run_dofile()
my $in = shift;
my $out = shift;
+ die "Can't open $in, $!" unless -f $in;
# should we remove $out ?
system("$config{perl} -I. -Mconfigdata util/dofile.pl -o\"Configure\" $in > $out.new");
exit 1 if $? != 0;