Fix a logic typo.

PR:		212053
Reported by:	Harald Schmalzbauer
Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2016-08-24 11:56:25 +00:00
parent 59deababf8
commit a166c018b8
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=49332

View file

@ -4511,7 +4511,7 @@ OPT1_PREVENTS_MSG= OPT1 and OPT2 enable conflicting options</programlisting>
.include &lt;bsd.port.options.mk&gt;
.if ${PORT_OPTIONS:MOPT2} || ${PORT_OPTIONS:MOPT1}
.if ${PORT_OPTIONS:MOPT2} &amp;&amp; ${PORT_OPTIONS:MOPT1}
BROKEN= Option OPT1 conflicts with OPT2 (select only one)
.endif</programlisting>