From: Andy Polyakov Date: Mon, 13 Sep 2010 16:28:34 +0000 (+0000) Subject: VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment [from... X-Git-Tag: OpenSSL_1_0_0b~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2c23b0716e9567eed8d135353f00588ce8e06fa1;p=oweals%2Fopenssl.git VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment [from HEAD]. 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 {