1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

stripped \r from win32 curl --version output.

This commit is contained in:
Gunter Knauf 2009-05-21 13:02:34 +00:00
parent c328cc9608
commit 4a79462c3e

View File

@ -669,6 +669,7 @@ if (!$crosscompile || (($extvercmd ne '') && (-x $extvercmd))) {
my $cmd = ($extvercmd ne '' ? $extvercmd.' ' : '')."./src/curl${binext} --version|";
open(F, $cmd);
while(<F>) {
s/\r//;
print;
print LOG;
}