aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2005-04-19 00:12:36 +0000
committerDr. Stephen Henson <steve@openssl.org>2005-04-19 00:12:36 +0000
commitf68854b4c344ed6ebf1893055bd63654849996e1 (patch)
tree6ff42991d0bc7b4bfbcf69cc5736c49a52650de6 /util
parent1cfd258ed61721ef667ea8a6ca46b57f3765007e (diff)
downloadopenssl-f68854b4c344ed6ebf1893055bd63654849996e1.tar.gz
Various Win32 and other fixes for warnings and compilation errors.
Fix Win32 build system to use 'Makefile' instead of 'Makefile.ssl'.
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl2
-rwxr-xr-xutil/mkfiles.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 15813461f0..202371c9da 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -10,7 +10,7 @@ $OPTIONS="";
$ssl_version="";
$banner="\t\@echo Building OpenSSL";
-open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n";
+open(IN,"<Makefile") || die "unable to open Makefile!\n";
while(<IN>) {
$ssl_version=$1 if (/^VERSION=(.*)$/);
$OPTIONS=$1 if (/^OPTIONS=(.*)$/);
diff --git a/util/mkfiles.pl b/util/mkfiles.pl
index d8cac3a3b4..f0daaecde7 100755
--- a/util/mkfiles.pl
+++ b/util/mkfiles.pl
@@ -62,7 +62,7 @@ my @dirs = (
);
foreach (@dirs) {
- &files_dir ($_, "Makefile.ssl");
+ &files_dir ($_, "Makefile");
}
exit(0);