svn commit: r394952 - head/Mk

Mathieu Arnold mat at FreeBSD.org
Fri Aug 21 13:05:21 UTC 2015


Author: mat
Date: Fri Aug 21 13:05:20 2015
New Revision: 394952
URL: https://svnweb.freebsd.org/changeset/ports/394952

Log:
  Fix with fmake.
  
  Noticed by:	marck
  Sponsored by:	Absolight

Modified:
  head/Mk/bsd.options.mk

Modified: head/Mk/bsd.options.mk
==============================================================================
--- head/Mk/bsd.options.mk	Fri Aug 21 12:52:44 2015	(r394951)
+++ head/Mk/bsd.options.mk	Fri Aug 21 13:05:20 2015	(r394952)
@@ -384,7 +384,8 @@ _DEPCHAIN+=	${opt}.$o
 ##    All of RHS of "RHS.*" (i.e. indirect dependency) are also added for
 ##    fast convergence.
 _PORT_OPTIONS:=	${PORT_OPTIONS}
-.for count in _0 ${COMPLETE_OPTIONS_LIST}
+.for _count in _0 ${COMPLETE_OPTIONS_LIST}
+count=	${_count}
 ### Check if all of the nested dependency are resolved already.
 .  if ${count} == _0 || ${_PORT_OPTIONS} != ${PORT_OPTIONS}
 PORT_OPTIONS:=	${_PORT_OPTIONS}


More information about the svn-ports-all mailing list