From: Andy Polyakov Date: Mon, 13 Sep 2010 16:15:17 +0000 (+0000) Subject: VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment. X-Git-Tag: OpenSSL-fips-2_0-rc1~976 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=bc9092f726fa0801b196ca5f47c824bee3b33251;ds=inline VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment. PR: 2338 --- diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl index 61a16bb09b..5f25fc41bf 100644 --- a/util/pl/VC-32.pl +++ b/util/pl/VC-32.pl @@ -195,7 +195,7 @@ if ($FLAVOR =~ /WIN64A/) { my $ver=`nasm -v 2>NUL`; my $vew=`nasmw -v 2>NUL`; # pick newest version - $asm=($ver gt $vew?"nasm":"nasmw")." -f win32"; + $asm=($ver ge $vew?"nasm":"nasmw")." -f win32"; $asmtype="win32n"; $afile='-o '; } else {