summaryrefslogtreecommitdiff
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authornils <nils>2005-04-13 19:09:43 +0000
committernils <nils>2005-04-13 19:09:43 +0000
commit0a2ae97c7aa97141a08d25e55cb11af5713a8461 (patch)
tree27c739a40486d37e8d1bda438569354023f9e398 /util/mkdef.pl
parenta4d0ecf183a5c1e003acf32e7f764791c3c6e0ac (diff)
downloadopenssl-0a2ae97c7aa97141a08d25e55cb11af5713a8461.tar.gz
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 98cd12706..8ff98470d 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*$/;
}