From owner-cvs-src@FreeBSD.ORG Wed Nov 16 06:56:10 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F6FD16A420; Wed, 16 Nov 2005 06:56:10 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D807043D46; Wed, 16 Nov 2005 06:56:09 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id jAG6u9gJ042844; Wed, 16 Nov 2005 06:56:09 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jAG6u99h042843; Wed, 16 Nov 2005 06:56:09 GMT (envelope-from ru) Message-Id: <200511160656.jAG6u99h042843@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 16 Nov 2005 06:56:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src Makefile Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Nov 2005 06:56:10 -0000 ru 2005-11-16 06:56:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . Makefile Makefile.inc1 Log: MFC the following: o Makefile: 1.319, 1,320 o Makefile.inc1: 1.500, 1.508, 1.509, 1.513, 1.515, 1.517 - Embed the "buildkernels" target into the "universe" target so that the "make -n universe" output looks more builder (human) friendly. - Wrap the "universe" target into a ".if make(universe)"; it's only intended to be called directly so it should be safe to do it. - Make the `distrib-dirs' target official and working properly when cross-building (installing). (This is useful for NFS installing world/kernel to another architecture machine.) - Remove duplicate settings from LIB32MAKE definition. - Install lib32 bits using the real install(1) program. - clean ${LIB32TMP} in _worldtmp - clean ${OBJTREE}/lib32 in _cleanobj - ensure that ${WORLDTMP} exists in build32 - Require DESTDIR to be set when cross-installing. - Force a full Groff upgrade during the build. Revision Changes Path 1.319.2.1 +12 -13 src/Makefile 1.499.2.4 +30 -15 src/Makefile.inc1