From owner-svn-ports-all@freebsd.org Tue Dec 29 17:01:44 2015 Return-Path: Delivered-To: svn-ports-all@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 34521A55DCD; Tue, 29 Dec 2015 17:01:44 +0000 (UTC) (envelope-from mat@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 mx1.freebsd.org (Postfix) with ESMTPS id 05049161A; Tue, 29 Dec 2015 17:01:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBTH1hMh003281; Tue, 29 Dec 2015 17:01:43 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBTH1h6m003280; Tue, 29 Dec 2015 17:01:43 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201512291701.tBTH1h6m003280@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 29 Dec 2015 17:01:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404763 - 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.20 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: Tue, 29 Dec 2015 17:01:44 -0000 Author: mat Date: Tue Dec 29 17:01:42 2015 New Revision: 404763 URL: https://svnweb.freebsd.org/changeset/ports/404763 Log: Be consistent. Noticed by: amdmi3 Sponsored by: Absolight Modified: head/Mk/bsd.options.mk Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Tue Dec 29 16:58:34 2015 (r404762) +++ head/Mk/bsd.options.mk Tue Dec 29 17:01:42 2015 (r404763) @@ -499,10 +499,10 @@ ${_u:tu}= ${${opt}_VARS:M${var}=*:C/[^= . endfor . endif . if defined(${opt}_CONFIGURE_ENABLE) -CONFIGURE_ARGS+= ${${opt}_CONFIGURE_ENABLE:C/^/--enable-/} +CONFIGURE_ARGS+= ${${opt}_CONFIGURE_ENABLE:S/^/--enable-/} . endif . if defined(${opt}_CONFIGURE_WITH) -CONFIGURE_ARGS+= ${${opt}_CONFIGURE_WITH:C/^/--with-/} +CONFIGURE_ARGS+= ${${opt}_CONFIGURE_WITH:S/^/--with-/} . endif . for configure in CONFIGURE CMAKE QMAKE . if defined(${opt}_${configure}_ON) @@ -546,7 +546,7 @@ ${_u:tu}= ${${opt}_VARS_OFF:M${var}=*:C CONFIGURE_ARGS+= ${${opt}_CONFIGURE_ENABLE:S/^/--disable-/:C/=.*//} . endif . if defined(${opt}_CONFIGURE_WITH) -CONFIGURE_ARGS+= ${${opt}_CONFIGURE_WITH:C/^/--without-/:C/=.*//} +CONFIGURE_ARGS+= ${${opt}_CONFIGURE_WITH:S/^/--without-/:C/=.*//} . endif . for configure in CONFIGURE CMAKE QMAKE . if defined(${opt}_${configure}_OFF)