From ee3b5fb5eaeda0b46e37190b881d4bb5df0224a4 Mon Sep 17 00:00:00 2001 From: David van Moolenbroek Date: Fri, 23 Apr 2010 12:04:48 +0000 Subject: [PATCH] fix make(1) error output --- commands/make/compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/make/compat.c b/commands/make/compat.c index 944ed366b..42c5fe2f6 100644 --- a/commands/make/compat.c +++ b/commands/make/compat.c @@ -411,7 +411,7 @@ again: } fprintf(debug_file, "\n"); } - fprintf(debug_file, "*** Error code %d", status); + printf("*** Error code %d", status); } } else { status = WTERMSIG(reason); /* signaled */ -- 2.44.0