Commit 7839b735 authored by Mat's avatar Mat Committed by Rich Salz
Browse files

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: default avatarRich Salz <rsalz@openssl.org>
Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent dfbfd067
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;