From bc9092f726fa0801b196ca5f47c824bee3b33251 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Mon, 13 Sep 2010 16:15:17 +0000 Subject: [PATCH] VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment. PR: 2338 --- util/pl/VC-32.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.34.1