summaryrefslogtreecommitdiffstats
path: root/documentation/migration-guides
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-09-23 17:33:43 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-10-07 10:54:25 +0100
commit5d1e8104cdec60d655b6bb289118f7b15a7fda14 (patch)
treecd0f4d758fddacae33d0b501dd6b990e5ec17543 /documentation/migration-guides
parentedaa121c7b52e71095afdd17f65274e43b485f7b (diff)
downloadpoky-5d1e8104cdec60d655b6bb289118f7b15a7fda14.tar.gz
manuals: add reference to "do_configure" task
[YOCTO #14508] Reported-by: Quentin Schulz <foss@0leil.net> (From yocto-docs rev: 5ddc1a40c9004d814472bdd385f456afa7a9c4e3) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/migration-guides')
-rw-r--r--documentation/migration-guides/migration-1.8.rst2
-rw-r--r--documentation/migration-guides/migration-2.1.rst4
-rw-r--r--documentation/migration-guides/migration-2.6.rst2
3 files changed, 4 insertions, 4 deletions
diff --git a/documentation/migration-guides/migration-1.8.rst b/documentation/migration-guides/migration-1.8.rst
index 51a13873e2..546c798196 100644
--- a/documentation/migration-guides/migration-1.8.rst
+++ b/documentation/migration-guides/migration-1.8.rst
@@ -128,7 +128,7 @@ when the :ref:`ref-tasks-configure` task needs to be
128re-executed. 128re-executed.
129 129
130One of the improvements is to attempt to run "make clean" during the 130One of the improvements is to attempt to run "make clean" during the
131``do_configure`` task if a ``Makefile`` exists. Some software packages 131:ref:`ref-tasks-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::
diff --git a/documentation/migration-guides/migration-2.1.rst b/documentation/migration-guides/migration-2.1.rst
index b2d8a0b678..bfc600ccca 100644
--- a/documentation/migration-guides/migration-2.1.rst
+++ b/documentation/migration-guides/migration-2.1.rst
@@ -108,12 +108,12 @@ this change should not be a problem. However, if you have a recipe that
108bypasses the standard :ref:`ref-tasks-configure` task 108bypasses the standard :ref:`ref-tasks-configure` task
109from the :ref:`autotools <ref-classes-autotools>` class and the software the recipe is building 109from the :ref:`autotools <ref-classes-autotools>` class and the software the recipe is building
110uses a very old version of ``autoconf``, the recipe might be incapable 110uses a very old version of ``autoconf``, the recipe might be incapable
111of determining the correct size of ``off_t`` during ``do_configure``. 111of determining the correct size of ``off_t`` during :ref:`ref-tasks-configure`.
112 112
113The best course of action is to patch the software as necessary to allow 113The best course of action is to patch the software as necessary to allow
114the default implementation from the :ref:`autotools <ref-classes-autotools>` class to work such 114the default implementation from the :ref:`autotools <ref-classes-autotools>` class to work such
115that ``autoreconf`` succeeds and produces a working configure script, 115that ``autoreconf`` succeeds and produces a working configure script,
116and to remove the overridden ``do_configure`` task such that the default 116and to remove the overridden :ref:`ref-tasks-configure` task such that the default
117implementation does get used. 117implementation does get used.
118 118
119.. _migration-2.1-image-generation-split-out-from-filesystem-generation: 119.. _migration-2.1-image-generation-split-out-from-filesystem-generation:
diff --git a/documentation/migration-guides/migration-2.6.rst b/documentation/migration-guides/migration-2.6.rst
index 11e659de7c..32bb48bccc 100644
--- a/documentation/migration-guides/migration-2.6.rst
+++ b/documentation/migration-guides/migration-2.6.rst
@@ -135,7 +135,7 @@ Fetching these types of dependencies that are not provided in the
135sysroot negatively affects the ability to reproduce builds. This type of 135sysroot negatively affects the ability to reproduce builds. This type of
136fetching is now explicitly disabled. Consequently, any missing 136fetching is now explicitly disabled. Consequently, any missing
137dependencies in Python recipes that use these classes now result in an 137dependencies in Python recipes that use these classes now result in an
138error during the ``do_configure`` task. 138error during the :ref:`ref-tasks-configure` task.
139 139
140.. _migration-2.6-linux-yocto-configuration-audit-issues-now-correctly-reported: 140.. _migration-2.6-linux-yocto-configuration-audit-issues-now-correctly-reported:
141 141