From owner-svn-ports-head@freebsd.org Fri Aug 28 16:18:33 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1E6A9C546E; Fri, 28 Aug 2015 16:18:33 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.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 A2D6710B3; Fri, 28 Aug 2015 16:18:33 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7SGIXRU058560; Fri, 28 Aug 2015 16:18:33 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7SGIX4B058559; Fri, 28 Aug 2015 16:18:33 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201508281618.t7SGIX4B058559@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Fri, 28 Aug 2015 16:18:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395507 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Aug 2015 16:18:33 -0000 Author: adamw Date: Fri Aug 28 16:18:32 2015 New Revision: 395507 URL: https://svnweb.freebsd.org/changeset/ports/395507 Log: Use more precise wording, i.e. "set" and "append" instead of "run." Approved by: portmgr (mat) Modified: head/Mk/bsd.options.mk Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Fri Aug 28 16:02:05 2015 (r395506) +++ head/Mk/bsd.options.mk Fri Aug 28 16:18:32 2015 (r395507) @@ -110,13 +110,13 @@ # ${opt}_USE_OFF= FOO=bar When option is disabled, it will enable # USE_FOO+= bar # -# ${opt}_VARS= FOO=bar When option is enabled, it will run +# ${opt}_VARS= FOO=bar When option is enabled, it will set # FOO= bar -# ${opt}_VARS= FOO+=bar When option is enabled, it will run +# ${opt}_VARS= FOO+=bar When option is enabled, it will append # FOO+= bar -# ${opt}_VARS_OFF= FOO=bar When option is disabled, it will run +# ${opt}_VARS_OFF= FOO=bar When option is disabled, it will set # FOO= bar -# ${opt}_VARS_OFF= FOO+=bar When option is disabled, it will run +# ${opt}_VARS_OFF= FOO+=bar When option is disabled, it will append # FOO+= bar # # For each of: