Add a note about make's config-recursive option to the ports chapter of

the Handbook.

PR:		docs/164826
Approved by:	gjb (mentor)
This commit is contained in:
Isabell Long 2012-08-29 14:29:03 +00:00
parent 7237d1700e
commit ed969469b7
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=39468

View file

@ -976,6 +976,18 @@ docbook =
<command>make <maketarget>install</maketarget></command> and
<command>make <maketarget>clean</maketarget></command>
as three separate steps.</para>
<para>When installing a port, using only <command>make
<maketarget>install</maketarget></command> from the
beginning means there will potentially be many waiting
periods between user interaction as the default behaviour
is to prompt the user for options. When there are many
dependencies, this sometimes makes building a single port
a huge hassle. To avoid this, first run <command>make
<maketarget>config-recursive</maketarget></command> to
do the configuration in one batch. Then run
<command>make <maketarget>install
[clean]</maketarget></command> afterwards.</para>
</note>
<note>