diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index d54b5bcdfc..5b56765cdd 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -1104,42 +1104,34 @@ Core layer for images cannot be removed
Extends the search path the OpenEmbedded build system uses
when looking for files and patches as it processes recipes.
- The directories BitBake uses when it processes recipes are
- defined by the
- FILESPATH variable.
- You can add directories to the search path by defining the
- FILESEXTRAPATHS variable.
-
-
-
- To add paths to the front of the search order, prepend
- them and use the immediate expansion
- (:=) operator.
- Provide a list of directories and separate
- each path using a colon character as follows:
-
- FILESEXTRAPATHS_prepend := "path_1:path_2:path_3:"
-
- You can add paths to the end of the search order by simply
- adding them as follows:
-
- FILESEXTRAPATHS := "path_1:path_2:path_3:"
-
- To maintain the integrity of the
- FILESPATH variable, you must include
- the appropriate beginning or ending (as needed) colon
- character.
-
-
-
- The FILESEXTRAPATHS variable is
- intended for use in .bbappend files
- to include any additional files provided in that layer.
- You typically accomplish this with the following:
+ Best practices dictate that you accomplish this by using the
+ variable from within a .bbappend file
+ and that you prepend paths as follows:
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
+
+
+ The directories BitBake uses when it processes recipes
+ are defined by the
+ FILESPATH
+ variable, and can be extended using
+ FILESEXTRAPATHS.
+ By prepending paths in .bbappend
+ files, you allow multiple append files that reside in
+ different layers but are used for the same recipe to
+ correctly extend the path.
+
+ Be sure to use the immediate expansion
+ (:=) operator and include
+ the trailing separating colon character.
+
+ Here is another example that specifically adds three paths:
+
+ FILESEXTRAPATHS_prepend := "path_1:path_2:path_3:"
+
+