diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index a76a8c2ecb..f752856b9d 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -10486,17 +10486,16 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
The location in the
Build Directory
where unpacked recipe source code resides.
- This location is within the work directory
- (WORKDIR),
- which is not static.
- The unpacked source location depends on the recipe name
- (PN) and
- recipe version
- (PV) as
- follows:
-
- ${WORKDIR}/${PN}-${PV}
-
+ By default, this directory is
+ ${WORKDIR}/${BPN}-${PV},
+ where ${BPN} is the base recipe name
+ and ${PV} is the recipe version.
+ If the source tarball extracts the code to a directory
+ named anything other than ${BPN}-${PV},
+ or if the source code if fetched from an SCM such as
+ Git or Subversion, then you must set S
+ in the recipe so that the OpenEmbedded build system
+ knows where to find the unpacked source.
@@ -10510,6 +10509,8 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
poky/build/tmp/work/qemux86-poky-linux/db/5.1.19-r3/db-5.1.19
+ The unpacked source code resides in the
+ db-5.1.19 folder.