diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index fa652e57a1..fd15dff9a1 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml @@ -9592,15 +9592,23 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" PREFERRED_VERSION_python = "2.7.3" PREFERRED_VERSION_linux-yocto = "3.19%" - If you want to force a particular version of a recipe, - you can use "forcevariable" as follows: - - PREFERRED_VERSION_linux-yocto_forcevariable = "3.4%" - - Another method is to use a machine override: + Sometimes the PREFERRED_VERSION + variable can be set by configuration files in a way that + is hard to change. + You can use + OVERRIDES + to set a machine-specific override. + Here is an example: PREFERRED_VERSION_linux-yocto_qemux86 = "3.4%" + Although not recommended, worst case, you can also use the + "forcevariable" override, which is the strongest override + possible. + Here is an example: + + PREFERRED_VERSION_linux-yocto_forcevariable = "3.4%" +