From owner-svn-doc-all@FreeBSD.ORG Thu Nov 21 01:29:58 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB3A848D; Thu, 21 Nov 2013 01:29:58 +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 CB4C5276C; Thu, 21 Nov 2013 01:29:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAL1TwPK058187; Thu, 21 Nov 2013 01:29:58 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAL1TwZG058186; Thu, 21 Nov 2013 01:29:58 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201311210129.rAL1TwZG058186@svn.freebsd.org> From: Eitan Adler Date: Thu, 21 Nov 2013 01:29:58 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r43210 - 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-all@freebsd.org X-Mailman-Version: 2.1.16 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: Thu, 21 Nov 2013 01:29:58 -0000 Author: eadler Date: Thu Nov 21 01:29:58 2013 New Revision: 43210 URL: http://svnweb.freebsd.org/changeset/doc/43210 Log: Massively simplify the section which explains how to use IGNORE. There is no reason to explain the .if construct here. 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 Thu Nov 21 01:23:22 2013 (r43209) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Thu Nov 21 01:29:58 2013 (r43210) @@ -12125,22 +12125,14 @@ exec %%LOCALBASE%%/bin/java -jar %%DATAD How to Avoid Using <literal>.error</literal> - Assume that someone has the line - - USE_POINTYHAT=yes - - in make.conf. The first of the + The first of the next two Makefile snippets will cause make index to fail, while the second one will not: - .if USE_POINTYHAT -.error "POINTYHAT is not supported" -.endif - - .if USE_POINTYHAT -IGNORE= POINTYHAT is not supported -.endif + .error "option is not supported" + + IGNORE=option is not supported