bin/179833: [patch] contrib/bmake port easter egg from pmake

Vladimir Kondratiev wulf at mail.mipt.ru
Sat Jun 22 09:20:01 UTC 2013


>Number:         179833
>Category:       bin
>Synopsis:       [patch] contrib/bmake port easter egg from pmake
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jun 22 09:20:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Vladimir Kondratiev
>Release:        FreeBSD 10.0-CURRENT r251566
>Organization:
>Environment:
FreeBSD wulf 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r251566M: Sun Jun  9 17:21:34 MSK 2013     root at wulf:/usr/obj/usr/src/sys/WULF  amd64
>Description:
Freebsd version <= 9.x

wulf at fbsd91:/home/wulf % make love
Not war.

Freebsd version = 10

wulf at fbsd10:/home/wulf % make love
make: don't know how to make love. Stop

>How-To-Repeat:
type "make love" at shell prompt
>Fix:
--- contrib/bmake/job.c	(revision 252094)
+++ contrib/bmake/job.c	(working copy)
@@ -1263,6 +1263,11 @@
 		(void)fflush(stdout);
   		return FALSE;
 	    } else {
+#ifndef WITHOUT_OLD_JOKE
+		if (strcmp(gn->name,"love") == 0)
+		    (*abortProc)("Not war.");
+		else                             
+#endif
 		(*abortProc)("%s%s %s. Stop", progname, msg, gn->name);
 		return FALSE;
 	    }


>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-bugs mailing list