summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--documentation/migration-guides/migration-3.3.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/migration-guides/migration-3.3.rst b/documentation/migration-guides/migration-3.3.rst
index f982b1c80a..1eb494c286 100644
--- a/documentation/migration-guides/migration-3.3.rst
+++ b/documentation/migration-guides/migration-3.3.rst
@@ -90,17 +90,17 @@ example::
90 90
91then in ``setup.py`` it works with source code in a relative fashion, such 91then in ``setup.py`` it works with source code in a relative fashion, such
92as ``../../src``. This causes pseudo to fail as it isn't able to track 92as ``../../src``. This causes pseudo to fail as it isn't able to track
93the paths properly. This release introduces a new :term:`DISTUTILS_SETUP_PATH` 93the paths properly. This release introduces a new ``DISTUTILS_SETUP_PATH``
94variable so that recipes can specify it explicitly, for example:: 94variable so that recipes can specify it explicitly, for example::
95 95
96 S = "${WORKDIR}/git" 96 S = "${WORKDIR}/git"
97 DISTUTILS_SETUP_PATH = "${S}/python/pythonmodule" 97 DISTUTILS_SETUP_PATH = "${S}/python/pythonmodule"
98 98
99Recipes that inherit from :ref:`distutils3 <ref-classes-distutils3>` (or 99Recipes that inherit from ``distutils3`` (or
100:ref:`setuptools3 <ref-classes-setuptools3>` which itself inherits 100:ref:`setuptools3 <ref-classes-setuptools3>` which itself inherits
101:ref:`distutils3 <ref-classes-distutils3>`) that also set :term:`S` to 101``distutils3``) that also set :term:`S` to
102point to a Python module within a subdirectory in the aforementioned 102point to a Python module within a subdirectory in the aforementioned
103manner should be changed to set :term:`DISTUTILS_SETUP_PATH` instead. 103manner should be changed to set ``DISTUTILS_SETUP_PATH`` instead.
104 104
105 105
106.. _migration-3.3-bitbake: 106.. _migration-3.3-bitbake: