From owner-svn-doc-head@FreeBSD.ORG Sun Jan 5 21:59:57 2014 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D2920194; Sun, 5 Jan 2014 21:59:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A48FF17A4; Sun, 5 Jan 2014 21:59:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s05Lxv0E095922; Sun, 5 Jan 2014 21:59:57 GMT (envelope-from bcr@svn.freebsd.org) Received: (from bcr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s05LxvKU095921; Sun, 5 Jan 2014 21:59:57 GMT (envelope-from bcr@svn.freebsd.org) Message-Id: <201401052159.s05LxvKU095921@svn.freebsd.org> From: Benedict Reuschling Date: Sun, 5 Jan 2014 21:59:57 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r43436 - head/en_US.ISO8859-1/books/porters-handbook X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jan 2014 21:59:57 -0000 Author: bcr Date: Sun Jan 5 21:59:57 2014 New Revision: 43436 URL: http://svnweb.freebsd.org/changeset/doc/43436 Log: Update parallel build instructions as MAKE_JOBS_SAFE is the default now. Add a missing tag to the provided patch in order to build the porters handbook after applying it. PR: docs/185521 Submitted by: jgh@ Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.xml Sun Jan 5 20:58:56 2014 (r43435) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Sun Jan 5 21:59:57 2014 (r43436) @@ -5624,21 +5624,13 @@ IGNORE= may not be redistributed because builds to be faster and more effective. This is achieved by passing -jX flag - to &man.make.1; running on vendor code. Unfortunately, not - all ports handle parallel building well. Therefore it is - required to explicitly enable this feature by adding - MAKE_JOBS_SAFE=yes somewhere below the - dependency declaration section of the - Makefile. - - Another option for controlling this feature from the - maintainer's point of view is the - MAKE_JOBS_UNSAFE=yes variable. It is - used when a port is known to be broken with - -jX and a user forces the use of multi - processor compilations for all ports in - /etc/make.conf with the - FORCE_MAKE_JOBS=yes variable. + to &man.make.1; running on vendor code. This is the default + build behavior of ports. Unfortunately, not all ports handle + parallel building well and it may be required to explicitly + disable this feature by adding the + MAKE_JOBS_UNSAFE=yes variable. It is used + when a port is known to be broken with + -jX.