summaryrefslogtreecommitdiffstats
path: root/documentation/poky-ref-manual/ref-variables.xml
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/poky-ref-manual/ref-variables.xml')
-rw-r--r--documentation/poky-ref-manual/ref-variables.xml16
1 files changed, 11 insertions, 5 deletions
diff --git a/documentation/poky-ref-manual/ref-variables.xml b/documentation/poky-ref-manual/ref-variables.xml
index 1ef8163c6e..9caa51f587 100644
--- a/documentation/poky-ref-manual/ref-variables.xml
+++ b/documentation/poky-ref-manual/ref-variables.xml
@@ -311,7 +311,7 @@
311 311
312 <para> 312 <para>
313 To use the <filename>CONFFILES</filename> variable, provide a package name 313 To use the <filename>CONFFILES</filename> variable, provide a package name
314 override that identifies the package. 314 override that identifies the resulting package.
315 Then, provide a space-separated list of files. 315 Then, provide a space-separated list of files.
316 Here is an example: 316 Here is an example:
317 <literallayout class='monospaced'> 317 <literallayout class='monospaced'>
@@ -622,9 +622,9 @@
622 622
623 <para> 623 <para>
624 To use the <filename>FILES</filename> variable, provide a package name 624 To use the <filename>FILES</filename> variable, provide a package name
625 override that identifies the package. 625 override that identifies the resulting package.
626 Then, provide a space-separated list of files or paths that identifies the 626 Then, provide a space-separated list of files or paths that identifies the
627 files you want included as part of the package. 627 files you want included as part of the resulting package.
628 Here is an example: 628 Here is an example:
629 <literallayout class='monospaced'> 629 <literallayout class='monospaced'>
630 FILES_${PN} += "${bindir}/mydir1/ ${bindir}/mydir2/myfile" 630 FILES_${PN} += "${bindir}/mydir1/ ${bindir}/mydir2/myfile"
@@ -1545,11 +1545,17 @@ recipes-graphics/xorg-font/xorg-font-common.inc:INC_PR = "r2"
1545 1545
1546 <glossentry id='var-PN'><glossterm>PN</glossterm> 1546 <glossentry id='var-PN'><glossterm>PN</glossterm>
1547 <glossdef> 1547 <glossdef>
1548 <para>The recipe name. 1548 <para>This variable can have two separate functions depending on the context: a recipe
1549 name or a resulting package name.</para>
1550 <para><filename>PN</filename> refers to a recipe name in the context of a file used
1551 by the OpenEmbedded build system as input to create a package.
1549 The name is normally extracted from the recipe file name. 1552 The name is normally extracted from the recipe file name.
1550 For example, if the recipe is named 1553 For example, if the recipe is named
1551 <filename>expat_2.0.1.bb</filename>, then the default value of <filename>PN</filename> 1554 <filename>expat_2.0.1.bb</filename>, then the default value of <filename>PN</filename>
1552 will be "expat". 1555 will be "expat".</para>
1556 <para>
1557 The variable refers to a package name in the context of a file created or produced by the
1558 OpenEmbedded build system.
1553 </para> 1559 </para>
1554 </glossdef> 1560 </glossdef>
1555 </glossentry> 1561 </glossentry>