diff options
Diffstat (limited to 'documentation/poky-ref-manual/ref-variables.xml')
| -rw-r--r-- | documentation/poky-ref-manual/ref-variables.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/documentation/poky-ref-manual/ref-variables.xml b/documentation/poky-ref-manual/ref-variables.xml index 2765c2f1c9..c490fc360d 100644 --- a/documentation/poky-ref-manual/ref-variables.xml +++ b/documentation/poky-ref-manual/ref-variables.xml | |||
| @@ -99,7 +99,7 @@ | |||
| 99 | By default, this directory is the same as the <link linkend='var-S'><filename>S</filename></link> | 99 | By default, this directory is the same as the <link linkend='var-S'><filename>S</filename></link> |
| 100 | directory: | 100 | directory: |
| 101 | <literallayout class='monospaced'> | 101 | <literallayout class='monospaced'> |
| 102 | B = ${WORKDIR}/${BPN}-{PV}/ | 102 | B = ${WORKDIR}/${BPN}/{PV}/ |
| 103 | </literallayout> | 103 | </literallayout> |
| 104 | You can separate the (<filename>S</filename>) directory and the directory pointed to | 104 | You can separate the (<filename>S</filename>) directory and the directory pointed to |
| 105 | by the <filename>B</filename> variable. | 105 | by the <filename>B</filename> variable. |
| @@ -2450,7 +2450,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
| 2450 | package version (<filename><link linkend='var-PV'>PV</link></filename>) as | 2450 | package version (<filename><link linkend='var-PV'>PV</link></filename>) as |
| 2451 | follows: | 2451 | follows: |
| 2452 | <literallayout class='monospaced'> | 2452 | <literallayout class='monospaced'> |
| 2453 | ${WORKDIR}/${PN}-${PV} | 2453 | ${WORKDIR}/${PN}/${PV} |
| 2454 | </literallayout> | 2454 | </literallayout> |
| 2455 | As an example, assume a | 2455 | As an example, assume a |
| 2456 | <ulink url='&YOCTO_DOCS_DEV_URL;#source-directory'>Source Directory</ulink> top-level | 2456 | <ulink url='&YOCTO_DOCS_DEV_URL;#source-directory'>Source Directory</ulink> top-level |
| @@ -2460,7 +2460,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
| 2460 | In this case, the working directory the build system uses to build | 2460 | In this case, the working directory the build system uses to build |
| 2461 | the <filename>db</filename> package is the following: | 2461 | the <filename>db</filename> package is the following: |
| 2462 | <literallayout class='monospaced'> | 2462 | <literallayout class='monospaced'> |
| 2463 | ~/poky/build/tmp/work/qemux86-poky-linux/db-5.1.19-r3/db-5.1.19 | 2463 | ~/poky/build/tmp/work/qemux86-poky-linux/db/5.1.19-r3/db-5.1.19 |
| 2464 | </literallayout> | 2464 | </literallayout> |
| 2465 | </para> | 2465 | </para> |
| 2466 | </glossdef> | 2466 | </glossdef> |
| @@ -2967,7 +2967,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
| 2967 | For packages that are not dependent on a particular machine, | 2967 | For packages that are not dependent on a particular machine, |
| 2968 | <filename>WORKDIR</filename> is defined as follows: | 2968 | <filename>WORKDIR</filename> is defined as follows: |
| 2969 | <literallayout class='monospaced'> | 2969 | <literallayout class='monospaced'> |
| 2970 | ${TMPDIR}/work/${PACKAGE_ARCH}-poky-${TARGET_OS}/${PN}-${PV}-${PR} | 2970 | ${TMPDIR}/work/${PACKAGE_ARCH}-poky-${TARGET_OS}/${PN}/${PV}-${PR} |
| 2971 | </literallayout> | 2971 | </literallayout> |
| 2972 | As an example, assume a | 2972 | As an example, assume a |
| 2973 | <ulink url='&YOCTO_DOCS_DEV_URL;#source-directory'>Source Directory</ulink> top-level | 2973 | <ulink url='&YOCTO_DOCS_DEV_URL;#source-directory'>Source Directory</ulink> top-level |
| @@ -2977,7 +2977,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
| 2977 | In this case, the working directory the build system uses to build | 2977 | In this case, the working directory the build system uses to build |
| 2978 | the <filename>v86d</filename> package is the following: | 2978 | the <filename>v86d</filename> package is the following: |
| 2979 | <literallayout class='monospaced'> | 2979 | <literallayout class='monospaced'> |
| 2980 | ~/poky/build/tmp/work/qemux86-poky-linux/v86d-01.9-r0 | 2980 | ~/poky/build/tmp/work/qemux86-poky-linux/v86d/01.9-r0 |
| 2981 | </literallayout> | 2981 | </literallayout> |
| 2982 | </para> | 2982 | </para> |
| 2983 | 2983 | ||
| @@ -2985,7 +2985,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
| 2985 | For packages that are dependent on a particular machine, <filename>WORKDIR</filename> | 2985 | For packages that are dependent on a particular machine, <filename>WORKDIR</filename> |
| 2986 | is defined slightly different: | 2986 | is defined slightly different: |
| 2987 | <literallayout class='monospaced'> | 2987 | <literallayout class='monospaced'> |
| 2988 | ${TMPDIR}/work/${MACHINE}-poky-${TARGET_OS}/${PN}-${PV}-${PR} | 2988 | ${TMPDIR}/work/${MACHINE}-poky-${TARGET_OS}/${PN}/${PV}-${PR} |
| 2989 | </literallayout> | 2989 | </literallayout> |
| 2990 | As an example, again assume a Source Directory top-level folder | 2990 | As an example, again assume a Source Directory top-level folder |
| 2991 | named <filename>poky</filename> and a default Build Directory | 2991 | named <filename>poky</filename> and a default Build Directory |
| @@ -2994,7 +2994,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
| 2994 | the <filename>acl</filename> recipe, which is being built for a | 2994 | the <filename>acl</filename> recipe, which is being built for a |
| 2995 | MIPS-based device, is the following: | 2995 | MIPS-based device, is the following: |
| 2996 | <literallayout class='monospaced'> | 2996 | <literallayout class='monospaced'> |
| 2997 | ~/poky/build/tmp/work/mips-poky-linux/acl-2.2.51-r2 | 2997 | ~/poky/build/tmp/work/mips-poky-linux/acl/2.2.51-r2 |
| 2998 | </literallayout> | 2998 | </literallayout> |
| 2999 | </para> | 2999 | </para> |
| 3000 | </glossdef> | 3000 | </glossdef> |
