projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment.
[openssl.git]
/
util
/
pl
/
VC-32.pl
diff --git
a/util/pl/VC-32.pl
b/util/pl/VC-32.pl
index 61a16bb09bcf429e944af7c136f1cb2265b9719c..5f25fc41bfa7bf9936b4b33ce2fbda4733edbffa 100644
(file)
--- 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 g
t
$vew?"nasm":"nasmw")." -f win32";
+ $asm=($ver g
e
$vew?"nasm":"nasmw")." -f win32";
$asmtype="win32n";
$afile='-o ';
} else {