Fix a syntax error on a make(1) command line.

Remove an erroneous newline.

Submitted by:	Simon Schubert
This commit is contained in:
Nik Clayton 2002-08-01 20:57:39 +00:00
parent f1af59f9fd
commit d0dd9b5cac
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=13764

View file

@ -881,13 +881,12 @@ Script done, &hellip;</screen>
<filename>/etc/make.conf</filename>, and this provides another
way of setting them.</para>
<screen>&prompt.root; <userinput>make -DNOPROFILE=true <replaceable>target</replaceable></userinput></screen>
<screen>&prompt.root; <userinput>make -DNOPROFILE <replaceable>target</replaceable></userinput></screen>
<para>is another way of specifying that profiled libraries should
not be built, and corresponds with the</para>
<programlisting>NOPROFILE= true
# Avoid compiling profiled libraries</programlisting>
<programlisting>NOPROFILE= true # Avoid compiling profiled libraries</programlisting>
<para>lines in <filename>/etc/make.conf</filename>.</para>