diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-09-23 17:33:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-07 10:54:25 +0100 |
commit | 5d1e8104cdec60d655b6bb289118f7b15a7fda14 (patch) | |
tree | cd0f4d758fddacae33d0b501dd6b990e5ec17543 /documentation/migration-guides | |
parent | edaa121c7b52e71095afdd17f65274e43b485f7b (diff) | |
download | poky-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.rst | 2 | ||||
-rw-r--r-- | documentation/migration-guides/migration-2.1.rst | 4 | ||||
-rw-r--r-- | documentation/migration-guides/migration-2.6.rst | 2 |
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 | |||
128 | re-executed. | 128 | re-executed. |
129 | 129 | ||
130 | One of the improvements is to attempt to run "make clean" during the | 130 | 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 | :ref:`ref-tasks-configure` task if a ``Makefile`` exists. Some software packages |
132 | do not provide a working clean target within their make files. If you | 132 | do not provide a working clean target within their make files. If you |
133 | have such recipes, you need to set | 133 | have 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 | |||
108 | bypasses the standard :ref:`ref-tasks-configure` task | 108 | bypasses the standard :ref:`ref-tasks-configure` task |
109 | from the :ref:`autotools <ref-classes-autotools>` class and the software the recipe is building | 109 | from the :ref:`autotools <ref-classes-autotools>` class and the software the recipe is building |
110 | uses a very old version of ``autoconf``, the recipe might be incapable | 110 | uses a very old version of ``autoconf``, the recipe might be incapable |
111 | of determining the correct size of ``off_t`` during ``do_configure``. | 111 | of determining the correct size of ``off_t`` during :ref:`ref-tasks-configure`. |
112 | 112 | ||
113 | The best course of action is to patch the software as necessary to allow | 113 | The best course of action is to patch the software as necessary to allow |
114 | the default implementation from the :ref:`autotools <ref-classes-autotools>` class to work such | 114 | the default implementation from the :ref:`autotools <ref-classes-autotools>` class to work such |
115 | that ``autoreconf`` succeeds and produces a working configure script, | 115 | that ``autoreconf`` succeeds and produces a working configure script, |
116 | and to remove the overridden ``do_configure`` task such that the default | 116 | and to remove the overridden :ref:`ref-tasks-configure` task such that the default |
117 | implementation does get used. | 117 | implementation 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 | |||
135 | sysroot negatively affects the ability to reproduce builds. This type of | 135 | sysroot negatively affects the ability to reproduce builds. This type of |
136 | fetching is now explicitly disabled. Consequently, any missing | 136 | fetching is now explicitly disabled. Consequently, any missing |
137 | dependencies in Python recipes that use these classes now result in an | 137 | dependencies in Python recipes that use these classes now result in an |
138 | error during the ``do_configure`` task. | 138 | error 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 | ||