From owner-svn-ports-all@FreeBSD.ORG Thu Feb 27 16:39:26 2014 Return-Path: Delivered-To: svn-ports-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 2BC66D31; Thu, 27 Feb 2014 16:39:26 +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 17C4B19B8; Thu, 27 Feb 2014 16:39:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1RGdP7K052900; Thu, 27 Feb 2014 16:39:25 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1RGdPxF052898; Thu, 27 Feb 2014 16:39:25 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201402271639.s1RGdPxF052898@svn.freebsd.org> From: Mathieu Arnold Date: Thu, 27 Feb 2014 16:39:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346379 - 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-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 16:39:26 -0000 Author: mat Date: Thu Feb 27 16:39:25 2014 New Revision: 346379 URL: http://svnweb.freebsd.org/changeset/ports/346379 QAT: https://qat.redports.org/buildarchive/r346379/ Log: Add %%NO_OPT1%% to PLIST_SUB that is enabled when %%OPT1%% is not. Sponsored by: Absolight Modified: head/Mk/bsd.options.mk Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Thu Feb 27 16:14:30 2014 (r346378) +++ head/Mk/bsd.options.mk Thu Feb 27 16:39:25 2014 (r346379) @@ -391,9 +391,9 @@ PLIST_SUB?= . if defined(OPTIONS_SUB) . if ! ${PLIST_SUB:M${opt}=*} . if ${PORT_OPTIONS:M${opt}} -PLIST_SUB:= ${PLIST_SUB} ${opt}="" +PLIST_SUB:= ${PLIST_SUB} ${opt}="" NO_${opt}="@comment " . else -PLIST_SUB:= ${PLIST_SUB} ${opt}="@comment " +PLIST_SUB:= ${PLIST_SUB} ${opt}="@comment " NO_${opt}="" . endif . endif . endif