diff options
author | Paul Smith <psmith@gnu.org> | 2013-09-21 15:23:05 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-09-21 17:08:42 -0400 |
commit | 9cd01958da86a68d0e47defcb9745ab373ef3d79 (patch) | |
tree | c43410ce8ab951afa22d6a17f68c5c84ea656025 /ChangeLog | |
parent | 4120f91846f781ead7350f86c9614a19824450f5 (diff) | |
download | gunmake-9cd01958da86a68d0e47defcb9745ab373ef3d79.tar.gz |
Ensure that stderr from shell functions in recipes is synced.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -1,3 +1,19 @@ +2013-09-21 Paul Smith <psmith@gnu.org> + + Stderr generated from shell functions in recipes should be synced. + + * job.h (FD_STDIN, FD_STDOUT, FD_STDERR): Create new macros to + avoid magic numbers. + (child_execute_job): Take a FD for stderr. + * job.c (child_execute_job): Handle STDERR FD's in addition to + stdin and stdout. + (start_job_command): Call child_execute_job() with the new STDERR + parameter. Instead of performing the dup() here, send it to + child_execute_job() where it's already being done. + * function.c (func_shell_base): Pass the OUTPUT_CONTEXT stderr to + child_execute_job() if it's set, otherwise FD_STDERR. + * main.c (main): Pass FD_STDERR to child_execute_job(). + 2013-09-19 Paul Smith <psmith@gnu.org> * main.c (main): Set MAKE_RESTARTS to negative before re-exec if |