summaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-04-13 19:09:43 +0000
committerNils Larsch <nils@openssl.org>2005-04-13 19:09:43 +0000
commit52272327f3154cffa0ed479f6e4044f2210ab10e (patch)
tree2a76ecfce1d27f7327fcc174c6d74e2a8510ecdb /util/mkdef.pl
parent1bf955920a5262a41331032a3bd4ba721153cdff (diff)
Makefile.ssl -> Makefile
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 98cd12706c..8ff98470d8 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -98,7 +98,7 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
"DEPRECATED" );
my $options="";
-open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n";
+open(IN,"<Makefile") || die "unable to open Makefile!\n";
while(<IN>) {
$options=$1 if (/^OPTIONS=(.*)$/);
}
@@ -1139,7 +1139,7 @@ sub print_test_file
sub get_version {
local *MF;
my $v = '?';
- open MF, 'Makefile.ssl' or return $v;
+ open MF, 'Makefile' or return $v;
while (<MF>) {
$v = $1, last if /^VERSION=(.*?)\s*$/;
}