From 6e1b9a823d00c0f92eb969cfa86112150ae238be Mon Sep 17 00:00:00 2001 From: Alexander Boettcher Date: Tue, 14 May 2013 11:04:29 +0200 Subject: [PATCH] autopilot: redirect stderr to log file --- tool/autopilot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/autopilot b/tool/autopilot index cfae41dd40..5808614b74 100755 --- a/tool/autopilot +++ b/tool/autopilot @@ -165,7 +165,7 @@ proc execute_run_script { platform run_script } { set fd [log_fd $platform $run_script] if {[catch { - exec make -C [build_dir $platform] [file join run $run_script] >@ $fd + exec make -C [build_dir $platform] [file join run $run_script] >&@ $fd }]} { set return_value false }