summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2010-09-13 16:15:17 +0000
committerAndy Polyakov <appro@openssl.org>2010-09-13 16:15:17 +0000
commitbc9092f726fa0801b196ca5f47c824bee3b33251 (patch)
tree6311b6b907c39e2358a62e5c33a0ad17b7b6d669 /util
parentf8927c89d00f42c4aee239cd8224fc4c7a84bd99 (diff)
VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment.
PR: 2338
Diffstat (limited to 'util')
-rw-r--r--util/pl/VC-32.pl2
1 files changed, 1 insertions, 1 deletions
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 {