Change an important bit from a tip to an important tag, and add an

example of what not to do.

Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2017-11-29 08:55:47 +00:00
parent e9829dbfa1
commit a84661a446
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=51236

View file

@ -6766,7 +6766,7 @@ BIN3_BUILD= yes
BIN3_BUILD= no
.endif</programlisting>
<tip>
<important>
<para>Values containing whitespace must be enclosed in
quotes:</para>
@ -6780,7 +6780,15 @@ BIN3_BUILD= no
intended there to be only one string, <literal>foo=bar
baz</literal>. Quoting the value prevents whitespace
from being used as a delimiter.</para>
</tip>
<para>Also, <emphasis>do not</emphasis> add extra spaces
after the
<literal><replaceable>var</replaceable>=</literal> sign
and before the value, it would also be split into two
strings. <emphasis>This will not work</emphasis>:</para>
<programlisting>OPT_VARS= foo= bar</programlisting>
</important>
</sect3>
<sect3 xml:id="options-dependencies">