summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/tasks.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/ref-manual/tasks.rst')
-rw-r--r--documentation/ref-manual/tasks.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/documentation/ref-manual/tasks.rst b/documentation/ref-manual/tasks.rst
index 5bceb79b8d..970b083942 100644
--- a/documentation/ref-manual/tasks.rst
+++ b/documentation/ref-manual/tasks.rst
@@ -57,7 +57,7 @@ the current working directory set to ``${``\ :term:`B`\ ``}``.
57The default behavior of this task is to run ``oe_runmake clean`` if a 57The default behavior of this task is to run ``oe_runmake clean`` if a
58makefile (``Makefile``, ``makefile``, or ``GNUmakefile``) is found and 58makefile (``Makefile``, ``makefile``, or ``GNUmakefile``) is found and
59:term:`CLEANBROKEN` is not set to "1". If no such 59:term:`CLEANBROKEN` is not set to "1". If no such
60file is found or the ``CLEANBROKEN`` variable is set to "1", the 60file is found or the :term:`CLEANBROKEN` variable is set to "1", the
61``do_configure`` task does nothing. 61``do_configure`` task does nothing.
62 62
63.. _ref-tasks-configure_ptest_base: 63.. _ref-tasks-configure_ptest_base:
@@ -308,17 +308,17 @@ This recipe has two patch files located here::
308 308
309 poky/meta/recipes-connectivity/bluez5/bluez5 309 poky/meta/recipes-connectivity/bluez5/bluez5
310 310
311In the ``bluez5`` recipe, the ``SRC_URI`` statements point to the source 311In the ``bluez5`` recipe, the :term:`SRC_URI` statements point to the source
312and patch files needed to build the package. 312and patch files needed to build the package.
313 313
314.. note:: 314.. note::
315 315
316 In the case for the ``bluez5_5.48.bb`` recipe, the ``SRC_URI`` statements 316 In the case for the ``bluez5_5.48.bb`` recipe, the :term:`SRC_URI` statements
317 are from an include file ``bluez5.inc``. 317 are from an include file ``bluez5.inc``.
318 318
319As mentioned earlier, the build system treats files whose file types are 319As mentioned earlier, the build system treats files whose file types are
320``.patch`` and ``.diff`` as patch files. However, you can use the 320``.patch`` and ``.diff`` as patch files. However, you can use the
321"apply=yes" parameter with the ``SRC_URI`` statement to indicate any 321"apply=yes" parameter with the :term:`SRC_URI` statement to indicate any
322file as a patch file:: 322file as a patch file::
323 323
324 SRC_URI = " \ 324 SRC_URI = " \
@@ -329,7 +329,7 @@ file as a patch file::
329Conversely, if you have a directory full of patch files and you want to 329Conversely, if you have a directory full of patch files and you want to
330exclude some so that the ``do_patch`` task does not apply them during 330exclude some so that the ``do_patch`` task does not apply them during
331the patch phase, you can use the "apply=no" parameter with the 331the patch phase, you can use the "apply=no" parameter with the
332``SRC_URI`` statement:: 332:term:`SRC_URI` statement::
333 333
334 SRC_URI = " \ 334 SRC_URI = " \
335 git://path_to_repo/some_package \ 335 git://path_to_repo/some_package \
@@ -430,7 +430,7 @@ variable also plays a role in where unpacked source files ultimately
430reside. For more information on how source files are unpacked, see the 430reside. For more information on how source files are unpacked, see the
431":ref:`overview-manual/concepts:source fetching`" 431":ref:`overview-manual/concepts:source fetching`"
432section in the Yocto Project Overview and Concepts Manual and also see 432section in the Yocto Project Overview and Concepts Manual and also see
433the ``WORKDIR`` and ``S`` variable descriptions. 433the :term:`WORKDIR` and :term:`S` variable descriptions.
434 434
435Manually Called Tasks 435Manually Called Tasks
436===================== 436=====================