From f6c3788de3d148c90aba705d045b1d92e7fea20a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 8 Jan 2018 11:07:17 +0200 Subject: Complete runtime/stdlib detection --- build2/utility.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build2/utility.cxx') diff --git a/build2/utility.cxx b/build2/utility.cxx index 280edd3..4196b03 100644 --- a/build2/utility.cxx +++ b/build2/utility.cxx @@ -210,13 +210,14 @@ namespace build2 process run_start (const process_path& pp, const char* args[], + int in, int out, bool err, const dir_path& cwd) try { assert (args[0] == pp.recall_string ()); - return process (pp, args, 0, out, (err ? 2 : 1), cwd.string ().c_str ()); + return process (pp, args, in, out, (err ? 2 : 1), cwd.string ().c_str ()); } catch (const process_error& e) { -- cgit v1.1