mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-26 14:00:56 +00:00
(start_job_command): Pass null instead of "" to message; don't add newline.
This commit is contained in:
parent
10d6808977
commit
ad61285598
1 changed files with 4 additions and 4 deletions
8
job.c
8
job.c
|
@ -592,12 +592,12 @@ start_job_command (child)
|
|||
return;
|
||||
}
|
||||
|
||||
/* Print out the command. If silent, we call `message' with an empty
|
||||
string so it can log the working directory before the command's own
|
||||
error messages appear. */
|
||||
/* Print out the command. If silent, we call `message' with null so it
|
||||
can log the working directory before the command's own error messages
|
||||
appear. */
|
||||
|
||||
message ((just_print_flag || (!(flags & COMMANDS_SILENT) && !silent_flag))
|
||||
? "" : "%s\n", p);
|
||||
? (char *) 0 : "%s", p);
|
||||
|
||||
/* Tell update_goal_chain that a command has been started on behalf of
|
||||
this target. It is important that this happens here and not in
|
||||
|
|
Loading…
Reference in a new issue