diff --git a/documentation/overview-manual/overview-manual-concepts.xml b/documentation/overview-manual/overview-manual-concepts.xml
index 78bf64f69a..3f53af87dc 100644
--- a/documentation/overview-manual/overview-manual-concepts.xml
+++ b/documentation/overview-manual/overview-manual-concepts.xml
@@ -1296,12 +1296,15 @@
After source code is patched, BitBake executes tasks that
- configure and compile the source code:
+ configure and compile the source code.
+ Once compilation occurs, the files are copied to a holding
+ area in preparation for packaging:
- This step in the build process consists of three tasks:
+ This step in the build process consists of the following
+ tasks:
do_prepare_recipe_sysroot:
@@ -1329,8 +1332,8 @@
The configurations handled by the
do_configure
- task are specific to source code configuration for
- the source code being built by the recipe.
+ task are specific to configurations for the source
+ code being built by the recipe.
If you are using the
autotools
@@ -1342,13 +1345,14 @@
variables.
For information on how this variable works within
that class, see the
- meta/classes/autotools.bbclass
- file.
+ autotools
+ class
+ here.
do_compile:
- Once a configuration task has been satisfied, BitBake
- compiles the source using the
+ Once a configuration task has been satisfied,
+ BitBake compiles the source using the
do_compile
task.
Compilation occurs in the directory pointed to by
@@ -1362,7 +1366,7 @@
do_install:
- Once compilation is done, BitBake executes the
+ After compilation completes, BitBake executes the
do_install
task.
This task copies files from the
@@ -1370,6 +1374,8 @@
in a holding area pointed to by the
D
variable.
+ Packaging occurs later using files from this
+ holding directory.