diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2016-04-06 12:32:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-06 23:11:59 +0100 |
commit | 133224fb3189f0a1d1c32b83a04b923d53c4e397 (patch) | |
tree | 5db0eb243bea00586baf0fb02eb09a9a168a44f2 /documentation/dev-manual/dev-manual-common-tasks.xml | |
parent | 3831ca0deeeffe512c32bb67cff94024e572ca29 (diff) | |
download | poky-133224fb3189f0a1d1c32b83a04b923d53c4e397.tar.gz |
documentation: Fixed references using the DISTRO_NAME variable
With the introduction of a DISTRO_NAME_NO_CAP variable, the occurrences
of the DISTRO_NAME variable had to be checked to see if they really
should be using the "NO_CAP" variable instead. Output and actual
branch names are case-sensitive.
(From yocto-docs rev: 711a3255538298dd3c4bd2af8ad13bc2d159c872)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/dev-manual-common-tasks.xml')
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 372d7b788f..dc6ed46971 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml | |||
@@ -10180,8 +10180,8 @@ | |||
10180 | during your build. | 10180 | during your build. |
10181 | Here is an example: | 10181 | Here is an example: |
10182 | <literallayout class='monospaced'> | 10182 | <literallayout class='monospaced'> |
10183 | # We built using the &DISTRO_NAME; branch of the poky repo | 10183 | # We built using the &DISTRO_NAME_NO_CAP; branch of the poky repo |
10184 | $ git clone -b &DISTRO_NAME; git://git.yoctoproject.org/poky | 10184 | $ git clone -b &DISTRO_NAME_NO_CAP; git://git.yoctoproject.org/poky |
10185 | $ cd poky | 10185 | $ cd poky |
10186 | # We built using the release_branch for our layers | 10186 | # We built using the release_branch for our layers |
10187 | $ git clone -b release_branch git://git.mycompany.com/meta-my-bsp-layer | 10187 | $ git clone -b release_branch git://git.mycompany.com/meta-my-bsp-layer |