summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-02-21 16:53:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-02-21 16:53:55 +0000
commit28def5dc99693bae7e552c44948f69b592cf4a6e (patch)
treee01282f99eedc703e5fac20eeec482767a18f119
parente3435a51f7d41b022ead58a8ccdc8939b30c8ac1 (diff)
downloadopenssl-new-28def5dc99693bae7e552c44948f69b592cf4a6e.tar.gz
Fix to Win32 build system.
-rwxr-xr-xutil/mk1mf.pl1
-rw-r--r--util/pl/VC-32.pl2
2 files changed, 2 insertions, 1 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 46e75b4552..9212ecf2f9 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -1250,3 +1250,4 @@ sub fips_check_files
}
fipslib_error() if ($ret == 0);
}
+
diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl
index d933a1f56e..e2713e5f9f 100644
--- a/util/pl/VC-32.pl
+++ b/util/pl/VC-32.pl
@@ -154,7 +154,7 @@ sub do_lib_rule
my $ex = "";
if ($target =~ /O_SSL/)
{
- $ex = " \$(L_CRYPTO)";
+ $ex .= " \$(L_CRYPTO)";
$ex .= " \$(L_FIPS)" if $fipsdso;
}
my $fipstarget;