From owner-svn-doc-all@freebsd.org Sat May 5 16:54:42 2018 Return-Path: Delivered-To: svn-doc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CD1BFB33EE; Sat, 5 May 2018 16:54:42 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C4E6071ACA; Sat, 5 May 2018 16:54:41 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BDF3520583; Sat, 5 May 2018 16:54:41 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w45GsfQi045374; Sat, 5 May 2018 16:54:41 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w45Gsfn6045373; Sat, 5 May 2018 16:54:41 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201805051654.w45Gsfn6045373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Sat, 5 May 2018 16:54:41 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r51619 - head/en_US.ISO8859-1/books/porters-handbook/special X-SVN-Group: doc-head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/porters-handbook/special X-SVN-Commit-Revision: 51619 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 May 2018 16:54:42 -0000 Author: eadler Date: Sat May 5 16:54:41 2018 New Revision: 51619 URL: https://svnweb.freebsd.org/changeset/doc/51619 Log: [porter's handbook] remove references to fmake USES The USES was removed in ports r452546 so there no more need to document it. Modified: head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Sat May 5 11:52:37 2018 (r51618) +++ head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Sat May 5 16:54:41 2018 (r51619) @@ -518,28 +518,21 @@ IGNORE= may not be redistributed because of licensing <command>make</command>, <command>gmake</command>, - <command>fmake</command>, and <command>imake</command> + and imake Several differing make implementations exist. Ported software often requires a particular implementation, like GNU make, known in &os; as - gmake, or fmake, the - legacy &os; make. + gmake. If the port uses GNU make, - add gmake to USES. If - the legacy &os; make is needed, add - fmake there. + add gmake to + USES. MAKE_CMD can be used to reference the specific command configured by the USES - setting in the port's Makefile. In - rare cases when more than one make - implementation is listed in USES, the - variables GMAKE (for the - GNU version) or FMAKE - (for the legacy &os; version) are available. + setting in the port's Makefile. Only use MAKE_CMD within the application Makefiles in WRKSRC to call the