diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2015-08-21 13:05:20 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2015-08-21 13:05:20 +0000 |
commit | 8d82504fad859c1adea56384d1d4b7528ae77d01 (patch) | |
tree | f5d6921aded58004606c06ebde09012c69e1af70 /Mk/bsd.options.mk | |
parent | www/seamonkey: fix bundled jemalloc3 configure on DragonFly (diff) |
Fix with fmake.
Noticed by: marck
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=394952
Diffstat (limited to '')
-rw-r--r-- | Mk/bsd.options.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index d1359f330343..1a4f111b4c6f 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -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} |