summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/migration-1.8.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/ref-manual/migration-1.8.rst')
-rw-r--r--documentation/ref-manual/migration-1.8.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/ref-manual/migration-1.8.rst b/documentation/ref-manual/migration-1.8.rst
index ec2b138796..68d5dcf859 100644
--- a/documentation/ref-manual/migration-1.8.rst
+++ b/documentation/ref-manual/migration-1.8.rst
@@ -56,7 +56,7 @@ you can now remove them.
56Additionally, a ``bluetooth`` class has been added to make selection of 56Additionally, a ``bluetooth`` class has been added to make selection of
57the appropriate bluetooth support within a recipe a little easier. If 57the appropriate bluetooth support within a recipe a little easier. If
58you wish to make use of this class in a recipe, add something such as 58you wish to make use of this class in a recipe, add something such as
59the following: :: 59the following::
60 60
61 inherit bluetooth 61 inherit bluetooth
62 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)}" 62 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)}"
@@ -84,7 +84,7 @@ where the ``linux.inc`` file in ``meta-oe`` was updated.
84 84
85Recipes that rely on the kernel source code and do not inherit the 85Recipes that rely on the kernel source code and do not inherit the
86module classes might need to add explicit dependencies on the 86module classes might need to add explicit dependencies on the
87``do_shared_workdir`` kernel task, for example: :: 87``do_shared_workdir`` kernel task, for example::
88 88
89 do_configure[depends] += "virtual/kernel:do_shared_workdir" 89 do_configure[depends] += "virtual/kernel:do_shared_workdir"
90 90
@@ -131,7 +131,7 @@ One of the improvements is to attempt to run "make clean" during the
131``do_configure`` task if a ``Makefile`` exists. Some software packages 131``do_configure`` task if a ``Makefile`` exists. Some software packages
132do not provide a working clean target within their make files. If you 132do not provide a working clean target within their make files. If you
133have such recipes, you need to set 133have such recipes, you need to set
134:term:`CLEANBROKEN` to "1" within the recipe, for example: :: 134:term:`CLEANBROKEN` to "1" within the recipe, for example::
135 135
136 CLEANBROKEN = "1" 136 CLEANBROKEN = "1"
137 137