Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 29 Dec 2015 17:01:43 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r404763 - head/Mk
Message-ID:  <201512291701.tBTH1h6m003280@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512291701.tBTH1h6m003280>