summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-06-04 20:35:58 +0200
committerRichard Levitte <levitte@openssl.org>2016-06-04 23:21:43 +0200
commita9936b5a127f8f5816073bf0f3e82dd23b46b668 (patch)
tree4b6203c8abc404444627b34a86b41552c83ed5f6 /Configure
parentd485806092ec0ac583ac0cf59ce74dd1d2ece929 (diff)
Clean away the last unixmake vestiges
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure39
1 files changed, 0 insertions, 39 deletions
diff --git a/Configure b/Configure
index 3064151fe4..645548d798 100755
--- a/Configure
+++ b/Configure
@@ -1941,51 +1941,12 @@ for (@generated_headers) {
catfile($srcdir, $_.".in"));
}
-###
-### When the old "unixmake" scheme goes away, so does this function
-###
-sub build_Makefile {
- run_dofile("Makefile","Makefile.in");
-
- # Copy all Makefile.in to Makefile (except top-level)
- use File::Find;
- use IO::File;
- find(
- {
- preprocess => sub {
- grep(!/^\./, @_);
- },
- wanted => sub {
- return if ($_ ne "Makefile.in" || $File::Find::dir eq ".");
- my $in = IO::File->new($_, "r") or
- die sprintf "Error reading Makefile.in in %s: !$\n",
- $File::Find::dir;
- my $out = IO::File->new("Makefile", "w") or
- die sprintf "Error writing Makefile in %s: !$\n",
- $File::Find::dir;
- print $out "# Generated from $_, do not edit\n";
- while (my $line = <$in>) { print $out $line }
- $in->close() or
- die sprintf "Error reading Makefile.in in %s: !$\n",
- $File::Find::dir;
- $out->close() or
- die sprintf "Error writing Makefile in %s: !$\n",
- $File::Find::dir;
- },
- },
- ".");
-}
-
my %builders = (
unified => sub {
run_dofile(catfile($blddir, $target{build_file}),
$config{build_file_template},
catfile($srcdir, "Configurations", "common.tmpl"));
},
- unixmake => sub {
- build_Makefile();
-
- },
);
$builders{$builder}->($builder_platform, @builder_opts);