From 8351ca3d0d1fac5313fc6c2e5312a7dcace3cb10 Mon Sep 17 00:00:00 2001 From: eliz Date: Fri, 7 Dec 2012 14:13:16 +0000 Subject: [PATCH] job.c (reap_children): Add debug message for when removal of a temporary batch file fails. --- ChangeLog | 2 ++ job.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c477249..26e0bb4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,8 @@ avoids leaving behind temporary batch files in the temporary directory, which happens frequently on a fast machine when using parallel builds. + (reap_children): Add debug message for when removal of a temporary + batch file fails. 2012-10-29 Paul Smith diff --git a/job.c b/job.c index b11d1b4..8e4c3a5 100644 --- a/job.c +++ b/job.c @@ -816,7 +816,6 @@ reap_children (int block, int err) DB (DB_JOBS, (_("Cleaning up temp batch file %s\n"), c->sh_batch_file)); - /* just try and remove, don't care if this fails */ errno = 0; rm_status = remove (c->sh_batch_file); if (rm_status) -- 2.11.4.GIT