summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-common-tasks.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-09-28 14:15:14 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-01 23:30:31 +0100
commita47106a43ad517b4defe175a5ac14212fbeeb3f1 (patch)
tree19bfbb8531bef6e121fe8856effba75398bdc8f7 /documentation/dev-manual/dev-manual-common-tasks.xml
parent4b17b2dd806832c8cb86d1c2f03c58ed825779c2 (diff)
downloadpoky-a47106a43ad517b4defe175a5ac14212fbeeb3f1.tar.gz
documentation: dev-manual - more wording changes.
I found other changes for underlying/corresponding wordings regarding the relationship between .bb and .bbappend filenames. (From yocto-docs rev: 28f12a4ea97a683281cd8cc0bbceb40d2b896aa4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.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.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 48b1cd3d27..4911b09dac 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -252,14 +252,14 @@
252 </para> 252 </para>
253 253
254 <para> 254 <para>
255 Append files files must have the same name as the underlying recipe. 255 Append files files must have the same name as the corresponding recipe.
256 For example, the append file <filename>someapp_&DISTRO;.bbappend</filename> must 256 For example, the append file <filename>someapp_&DISTRO;.bbappend</filename> must
257 apply to <filename>someapp_&DISTRO;.bb</filename>. 257 apply to <filename>someapp_&DISTRO;.bb</filename>.
258 This means the original recipe and append file names are version number specific. 258 This means the original recipe and append file names are version number specific.
259 If the underlying recipe is renamed to update to a newer version, the 259 If the corresponding recipe is renamed to update to a newer version, the
260 corresponding <filename>.bbappend</filename> file must be renamed as well. 260 underlying <filename>.bbappend</filename> file must be renamed as well.
261 During the build process, BitBake displays an error on starting if it detects a 261 During the build process, BitBake displays an error on starting if it detects a
262 <filename>.bbappend</filename> file that does not have an underlying recipe 262 <filename>.bbappend</filename> file that does not have a corresponding recipe
263 with a matching name. 263 with a matching name.
264 </para> 264 </para>
265 265