projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f548a0e
)
VC-32.pl: default to nasm if neither nasm or nasmw is is found at the moment [from...
author
Andy Polyakov
<appro@openssl.org>
Mon, 13 Sep 2010 16:28:34 +0000
(16:28 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Mon, 13 Sep 2010 16:28:34 +0000
(16:28 +0000)
PR: 2338
util/pl/VC-32.pl
patch
|
blob
|
history
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 {