From: Mat Date: Tue, 9 Feb 2016 21:53:14 +0000 (+0100) Subject: GH649: Fix: version32.rc was not created on Windows X-Git-Tag: OpenSSL_1_1_0-pre3~160 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7839b735d884cfa10d18c39c79fea48b97fcb634;p=oweals%2Fopenssl.git GH649: Fix: version32.rc was not created on Windows version32.rc was not created on Windows. The if condition has been corrected. Signed-off-by: Rich Salz Reviewed-by: Tim Hudson --- diff --git a/Configure b/Configure index c81a66157e..afd905c4ac 100755 --- a/Configure +++ b/Configure @@ -1796,7 +1796,7 @@ EOF close(OUT); # create the ms/version32.rc file if needed - if ($platform eq "netware") { + if ($platform ne "netware") { my ($v1, $v2, $v3, $v4); if ($config{version_num} =~ /^0x([0-9a-f]{1})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{1})L$/i) { $v1=hex $1;