From owner-svn-src-head@FreeBSD.ORG Wed Oct 22 06:53:56 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32162F02; Wed, 22 Oct 2014 06:53:56 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1ED30DB2; Wed, 22 Oct 2014 06:53:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9M6rtnD072118; Wed, 22 Oct 2014 06:53:55 GMT (envelope-from jmg@FreeBSD.org) Received: (from jmg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9M6rt7b072117; Wed, 22 Oct 2014 06:53:55 GMT (envelope-from jmg@FreeBSD.org) Message-Id: <201410220653.s9M6rt7b072117@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jmg set sender to jmg@FreeBSD.org using -f From: John-Mark Gurney Date: Wed, 22 Oct 2014 06:53:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r273454 - head/share/mk X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Oct 2014 06:53:56 -0000 Author: jmg Date: Wed Oct 22 06:53:55 2014 New Revision: 273454 URL: https://svnweb.freebsd.org/changeset/base/273454 Log: fix spelling of DEFAULT in comments... Modified: head/share/mk/bsd.mkopt.mk Modified: head/share/mk/bsd.mkopt.mk ============================================================================== --- head/share/mk/bsd.mkopt.mk Wed Oct 22 05:21:36 2014 (r273453) +++ head/share/mk/bsd.mkopt.mk Wed Oct 22 06:53:55 2014 (r273454) @@ -4,11 +4,11 @@ # Generic mechanism to deal with WITH and WITHOUT options and turn # them into MK_ options. # -# For each option FOO in __DEFUALT_YES_OPTIONS, MK_FOO is set to +# For each option FOO in __DEFAULT_YES_OPTIONS, MK_FOO is set to # "yes", unless WITHOUT_FOO is defined, in which case it is set to # "no". # -# For each option FOO in __DEFUALT_NO_OPTIONS, MK_FOO is set to "no", +# For each option FOO in __DEFAULT_NO_OPTIONS, MK_FOO is set to "no", # unless WITH_FOO is defined, in which case it is set to "yes". # # If both WITH_FOO and WITHOUT_FOO are defined, WITHOUT_FOO wins and