Commit 6063dff8 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Modified to not mix ordinary print to STDOUT with a system() that prints to

stdout, since I've found cases on Solaris where the second output mixes with
the first and thus the big check-script doesn't properly find the first
string in the output stream.
parent 7fba9ed3
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -522,7 +522,12 @@ if ($targetos =~ /netware/) {
}
elsif(!$crosscompile) {
  logit "display curl$binext --version output";
  system("./src/curl$binext --version");
  open(F, "./src/curl$binext --version|");
  while(<F>) {
      print;
      print LOG;
  }
  close(F);
}

if ($configurebuild && !$crosscompile) {