summaryrefslogtreecommitdiffstats
path: root/documentation/migration-guides
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/migration-guides')
-rw-r--r--documentation/migration-guides/migration-1.5.rst7
-rw-r--r--documentation/migration-guides/migration-1.6.rst4
-rw-r--r--documentation/migration-guides/migration-1.7.rst2
-rw-r--r--documentation/migration-guides/migration-2.6.rst3
-rw-r--r--documentation/migration-guides/migration-general.rst2
5 files changed, 8 insertions, 10 deletions
diff --git a/documentation/migration-guides/migration-1.5.rst b/documentation/migration-guides/migration-1.5.rst
index 1b78e99809..70a087ff1a 100644
--- a/documentation/migration-guides/migration-1.5.rst
+++ b/documentation/migration-guides/migration-1.5.rst
@@ -126,10 +126,9 @@ The following directory changes exist:
126 :term:`DEPLOY_DIR_IMAGE` variable in the external environment. 126 :term:`DEPLOY_DIR_IMAGE` variable in the external environment.
127 127
128- When buildhistory is enabled, its output is now written under the 128- When buildhistory is enabled, its output is now written under the
129 :term:`Build Directory` rather than 129 :term:`Build Directory` rather than :term:`TMPDIR`. Doing so makes
130 :term:`TMPDIR`. Doing so makes it easier to delete 130 it easier to delete :term:`TMPDIR` and preserve the build history.
131 :term:`TMPDIR` and preserve the build history. Additionally, data for 131 Additionally, data for produced SDKs is now split by :term:`IMAGE_NAME`.
132 produced SDKs is now split by :term:`IMAGE_NAME`.
133 132
134- The ``pkgdata`` directory produced as part of the packaging process 133- The ``pkgdata`` directory produced as part of the packaging process
135 has been collapsed into a single machine-specific directory. This 134 has been collapsed into a single machine-specific directory. This
diff --git a/documentation/migration-guides/migration-1.6.rst b/documentation/migration-guides/migration-1.6.rst
index f54d4ba729..d3de264650 100644
--- a/documentation/migration-guides/migration-1.6.rst
+++ b/documentation/migration-guides/migration-1.6.rst
@@ -233,9 +233,9 @@ Separate build and source directories have been enabled by default for
233selected recipes where it is known to work and for all 233selected recipes where it is known to work and for all
234recipes that inherit the :ref:`cmake <ref-classes-cmake>` class. In 234recipes that inherit the :ref:`cmake <ref-classes-cmake>` class. In
235future releases the :ref:`autotools <ref-classes-autotools>` class 235future releases the :ref:`autotools <ref-classes-autotools>` class
236will enable a separate build directory by default as well. Recipes 236will enable a separate :term:`Build Directory` by default as well. Recipes
237building Autotools-based software that fails to build with a separate 237building Autotools-based software that fails to build with a separate
238build directory should be changed to inherit from the 238:term:`Build Directory` should be changed to inherit from the
239:ref:`autotools-brokensep <ref-classes-autotools>` class instead of 239:ref:`autotools-brokensep <ref-classes-autotools>` class instead of
240the ``autotools`` or ``autotools_stage``\ classes. 240the ``autotools`` or ``autotools_stage``\ classes.
241 241
diff --git a/documentation/migration-guides/migration-1.7.rst b/documentation/migration-guides/migration-1.7.rst
index 7b179f2aa1..e1a7594fb1 100644
--- a/documentation/migration-guides/migration-1.7.rst
+++ b/documentation/migration-guides/migration-1.7.rst
@@ -42,7 +42,7 @@ Autotools Class Changes
42The following :ref:`autotools <ref-classes-autotools>` class changes 42The following :ref:`autotools <ref-classes-autotools>` class changes
43occurred: 43occurred:
44 44
45- *A separate build directory is now used by default:* The 45- *A separate :term:`Build Directory` is now used by default:* The
46 :ref:`autotools <ref-classes-autotools>` class has been 46 :ref:`autotools <ref-classes-autotools>` class has been
47 changed to use a directory for building 47 changed to use a directory for building
48 (:term:`B`), which is separate from the source directory 48 (:term:`B`), which is separate from the source directory
diff --git a/documentation/migration-guides/migration-2.6.rst b/documentation/migration-guides/migration-2.6.rst
index b36eb194b3..eedede2457 100644
--- a/documentation/migration-guides/migration-2.6.rst
+++ b/documentation/migration-guides/migration-2.6.rst
@@ -343,8 +343,7 @@ BitBake Changes
343--------------- 343---------------
344 344
345The server logfile ``bitbake-cookerdaemon.log`` is now always placed in 345The server logfile ``bitbake-cookerdaemon.log`` is now always placed in
346the :term:`Build Directory` instead of the current 346the :term:`Build Directory` instead of the current directory.
347directory.
348 347
349.. _migration-2.6-security-changes: 348.. _migration-2.6-security-changes:
350 349
diff --git a/documentation/migration-guides/migration-general.rst b/documentation/migration-guides/migration-general.rst
index 0f0408e51f..847bdad739 100644
--- a/documentation/migration-guides/migration-general.rst
+++ b/documentation/migration-guides/migration-general.rst
@@ -86,7 +86,7 @@ any new Yocto Project release.
86 3. Capture the buildhistory output (as specified by :term:`BUILDHISTORY_DIR`) 86 3. Capture the buildhistory output (as specified by :term:`BUILDHISTORY_DIR`)
87 and ensure it is preserved for subsequent builds. How you would do this 87 and ensure it is preserved for subsequent builds. How you would do this
88 depends on how you are running your builds - if you are doing this all on 88 depends on how you are running your builds - if you are doing this all on
89 one workstation in the same build directory you may not need to do 89 one workstation in the same :term:`Build Directory` you may not need to do
90 anything other than not deleting the buildhistory output directory. For 90 anything other than not deleting the buildhistory output directory. For
91 builds in a pipeline it may be more complicated. 91 builds in a pipeline it may be more complicated.
92 92