Skip to content

Commit d5a4d22

Browse files
committed
8261843: incorrect info in docs/building.html
Reviewed-by: erikj
1 parent bf75a3a commit d5a4d22

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/building.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ <h3 id="handling-reconfigurations">Handling Reconfigurations</h3>
849849
<p>If you update the repository and part of the configure script has changed, the build system will force you to re-run <code>configure</code>.</p>
850850
<p>Most of the time, you will be fine by running <code>configure</code> again with the same arguments as the last time, which can easily be performed by <code>make reconfigure</code>. To simplify this, you can use the <code>CONF_CHECK</code> make control variable, either as <code>make CONF_CHECK=auto</code>, or by setting an environment variable. For instance, if you add <code>export CONF_CHECK=auto</code> to your <code>.bashrc</code> file, <code>make</code> will always run <code>reconfigure</code> automatically whenever the configure script has changed.</p>
851851
<p>You can also use <code>CONF_CHECK=ignore</code> to skip the check for a needed configure update. This might speed up the build, but comes at the risk of an incorrect build result. This is only recommended if you know what you're doing.</p>
852-
<p>From time to time, you will also need to modify the command line to <code>configure</code> due to changes. Use <code>make print-configure</code> to show the command line used for your current configuration.</p>
852+
<p>From time to time, you will also need to modify the command line to <code>configure</code> due to changes. Use <code>make print-configuration</code> to show the command line used for your current configuration.</p>
853853
<h3 id="using-fine-grained-make-targets">Using Fine-Grained Make Targets</h3>
854854
<p>The default behavior for make is to create consistent and correct output, at the expense of build speed, if necessary.</p>
855855
<p>If you are prepared to take some risk of an incorrect build, and know enough of the system to understand how things build and interact, you can speed up the build process considerably by instructing make to only build a portion of the product.</p>

doc/building.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1556,8 +1556,8 @@ update. This might speed up the build, but comes at the risk of an incorrect
15561556
build result. This is only recommended if you know what you're doing.
15571557
15581558
From time to time, you will also need to modify the command line to `configure`
1559-
due to changes. Use `make print-configure` to show the command line used for
1560-
your current configuration.
1559+
due to changes. Use `make print-configuration` to show the command line used
1560+
for your current configuration.
15611561
15621562
### Using Fine-Grained Make Targets
15631563

0 commit comments

Comments
 (0)