From owner-cvs-src-old@FreeBSD.ORG Tue Mar 24 00:07:35 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B159106566B for ; Tue, 24 Mar 2009 00:07:35 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 25EB08FC08 for ; Tue, 24 Mar 2009 00:07:35 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n2O07Zgi011723 for ; Tue, 24 Mar 2009 00:07:35 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n2O07Zra011722 for cvs-src-old@freebsd.org; Tue, 24 Mar 2009 00:07:35 GMT (envelope-from obrien@repoman.freebsd.org) Message-Id: <200903240007.n2O07Zra011722@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to obrien@repoman.freebsd.org using -f From: "David E. O'Brien" Date: Tue, 24 Mar 2009 00:07:17 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/usr.bin/make Makefile buf.c for.c globals.h job.c job.h main.c make.1 make.c make.h parse.c suff.c var.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Mar 2009 00:07:35 -0000 obrien 2009-03-24 00:07:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) usr.bin/make Makefile buf.c for.c globals.h job.c job.h main.c make.1 make.c make.h parse.c suff.c var.c Log: SVN rev 190345 on 2009-03-24 00:07:17Z by obrien MFC: r187475: Remove inlining of functions that are used mostly in different object files. This lets use to remove NO_WERROR. r186558: Consistently use Var_SetGlobal(). r186713: Add the -Q be-quiet flag for parallel jobs. r186279: Exit with error code 2 when run with -k (continue if errors) and build failed. r186559: Add the ability to tweak the token output before targets in job mode. r181021: Add POSIX -p flag to make(1). r186502: Clarify the behaviour of conditionals when dealing with comparisons. Revision Changes Path 1.65.2.2 +1 -2 src/usr.bin/make/Makefile 1.36.10.1 +3 -3 src/usr.bin/make/buf.c 1.43.10.2 +1 -1 src/usr.bin/make/for.c 1.11.2.2 +2 -0 src/usr.bin/make/globals.h 1.126.2.2 +27 -19 src/usr.bin/make/job.c 1.46.2.1 +2 -1 src/usr.bin/make/job.h 1.163.2.4 +65 -40 src/usr.bin/make/main.c 1.103.2.4 +62 -15 src/usr.bin/make/make.1 1.39.2.1 +2 -4 src/usr.bin/make/make.c 1.35.2.1 +2 -0 src/usr.bin/make/make.h 1.113.2.2 +3 -1 src/usr.bin/make/parse.c 1.64.10.1 +3 -2 src/usr.bin/make/suff.c 1.163.2.1 +14 -20 src/usr.bin/make/var.c