From e6da40107e73325312a451a3b9d4af4fe30034e4 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Tue, 4 Mar 2008 22:51:37 +0000 Subject: [PATCH] It seems some don't care for the anchient joke. Add WITHOUT_OLD_JOKE to your CFLAGS if you fall into this camp. --- usr.bin/make/job.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index c871eb52faa1..4389ad0b43f0 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -1267,9 +1267,11 @@ Job_CheckCommands(GNode *gn, void (*abortProc)(const char *, ...)) fflush(stdout); return (FALSE); } else { +#ifndef WITHOUT_OLD_JOKE if (strcmp(gn->name,"love") == 0) (*abortProc)("Not war."); else +#endif (*abortProc)("%s %s. Stop", msg, gn->name); return (FALSE);