From: Dr. Stephen Henson Date: Fri, 4 Jan 2008 00:40:00 +0000 (+0000) Subject: Stop nasm/nasmw test complaining on stderr. X-Git-Tag: OpenSSL_0_9_8h~88 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=496970b233ef9cefae0e0f5c1ed3e8a0f64a5082;p=oweals%2Fopenssl.git Stop nasm/nasmw test complaining on stderr. --- diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl index 03317b4201..9cb2ab7e99 100644 --- a/util/pl/VC-32.pl +++ b/util/pl/VC-32.pl @@ -160,8 +160,8 @@ $lfile='/out:'; $shlib_ex_obj=""; $app_ex_obj="setargv.obj" if ($FLAVOR !~ /CE/); if ($nasm) { - my $ver=`nasm -v`; - my $vew=`nasmw -v`; + my $ver=`nasm -v 2>NUL`; + my $vew=`nasmw -v 2>NUL`; # pick newest version $asm=($ver gt $vew?"nasm":"nasmw")." -f win32"; $afile='-o ';