diff options
-rw-r--r-- | src/build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c index c3d983f..8192ebe 100644 --- a/src/build.c +++ b/src/build.c @@ -339,7 +339,7 @@ void add_dep(const char *target, const char *parent, int ident) { char *dep_path = get_dep_path(parent); if (strchr(target, '\n')) - fatal("Newlines in targets are not supported."); + die("redo: newlines in targets are not supported\n"); int fd = open(dep_path, O_WRONLY | O_APPEND); if (fd < 0) { |