svn commit: r393225 - head/Mk

Mathieu Arnold mat at FreeBSD.org
Thu Jul 30 08:51:44 UTC 2015


Author: mat
Date: Thu Jul 30 08:51:43 2015
New Revision: 393225
URL: https://svnweb.freebsd.org/changeset/ports/393225

Log:
  White space fix.
  
  With hat:	portmgr
  Sponsored by:	Absolight

Modified:
  head/Mk/bsd.options.mk

Modified: head/Mk/bsd.options.mk
==============================================================================
--- head/Mk/bsd.options.mk	Thu Jul 30 08:51:07 2015	(r393224)
+++ head/Mk/bsd.options.mk	Thu Jul 30 08:51:43 2015	(r393225)
@@ -283,12 +283,12 @@ NEW_OPTIONS:=	${NEW_OPTIONS:N${opt}}
 # XXX once WITH_DEBUG is not magic any more, do remove the :NDEBUG from here.
 .for opt in ${ALL_OPTIONS:NDEBUG}
 .if defined(WITH_${opt})
-OPTIONS_WARNINGS+= "WITH_${opt}"
+OPTIONS_WARNINGS+=	"WITH_${opt}"
 OPTIONS_WARNINGS_SET+=	${opt}
 PORT_OPTIONS+=	${opt}
 .endif
 .if defined(WITHOUT_${opt})
-OPTIONS_WARNINGS+= "WITHOUT_${opt}"
+OPTIONS_WARNINGS+=	"WITHOUT_${opt}"
 OPTIONS_WARNINGS_UNSET+=	${opt}
 PORT_OPTIONS:=	${PORT_OPTIONS:N${opt}}
 .endif
@@ -474,7 +474,7 @@ ${deptype}_DEPENDS+=	${${opt}_${deptype}
 .    endfor
 .    for target in ${_OPTIONS_TARGETS}
 .      for prepost in pre post
-_OPTIONS_${prepost}_${target}+= ${prepost}-${target}-${opt}-on
+_OPTIONS_${prepost}_${target}+=	${prepost}-${target}-${opt}-on
 .      endfor
 .    endfor
 .  else
@@ -511,7 +511,7 @@ ${deptype}_DEPENDS+=	${${opt}_${deptype}
 .    endfor
 .    for target in ${_OPTIONS_TARGETS}
 .      for prepost in pre post
-_OPTIONS_${prepost}_${target}+= ${prepost}-${target}-${opt}-off
+_OPTIONS_${prepost}_${target}+=	${prepost}-${target}-${opt}-off
 .      endfor
 .    endfor
 .  endif


More information about the svn-ports-all mailing list