diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 6af5708988..37ca37b626 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -9199,6 +9199,50 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
+ PACKAGECONFIG_CONFARGS
+
+ PACKAGECONFIG_CONFARGS[doc] = "A space-separated list of configuration options generated from PACKAGECONFIG."
+
+
+
+
+ A space-separated list of configuration options generated
+ from the
+ PACKAGECONFIG
+ setting.
+ This list of options helps other classes and
+ recipes take advantage of the
+ PACKAGECONFIG mechanism without
+ having to include options from
+ EXTRA_OECONF.
+
+
+
+ To illustrate how to use
+ PACKAGECONFIG_CONFARGS, consider the
+ following example:
+
+ PACKAGECONFIG_CONFARGS = " \
+ -prefix ${prefix} \
+ -sysroot ${STAGING_DIR_NATIVE} \
+ -no-gcc-sysroot
+ "
+
+ In the previous example,
+ PACKAGECONFIG_CONFARGS is set with
+ three configuration options that can be passed using the
+ PACKAGECONFIG mechanism, thus
+ avoiding having to use EXTRA_OECONF.
+
+
+
+ For additional information, see the
+ PACKAGECONFIG
+ variable.
+
+
+
+
PACKAGEGROUP_DISABLE_COMPLEMENTARY
PACKAGEGROUP_DISABLE_COMPLEMENTARY[doc] = "Prevents automatic creation of the normal complementary packages such as -dev and -dbg in a packagegroup recipe."