Commit bc9092f7 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment.

PR: 2338
parent f8927c89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {