diff options
author | Tim Orling <ticotimo@gmail.com> | 2022-01-13 07:38:42 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-17 11:59:50 +0000 |
commit | 9d9a50aa14030c26a58e57e6ddab0f80a40a976c (patch) | |
tree | 4d2ec99484c83b2604fa53417a863a9c50501e2f /documentation | |
parent | 7018f99223fde2c498310a2b67a618f6918dc68b (diff) | |
download | poky-9d9a50aa14030c26a58e57e6ddab0f80a40a976c.tar.gz |
ref-manual/variables.rst: add SETUPTOOLS_*_ARGS
Add SETUPTOOLS_BUILD_ARGS variable which can be used to pass additional
arguments to `setup.py build`.
Add SETUPTOOLS_INSTALL_ARGS variable which can be used to pass
additional arguments to `setup.py install`.
[YOCTO #14610]
(From yocto-docs rev: 4e8c911b73f511f1fb7b557f12d5c87129bc2593)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/ref-manual/variables.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index 66b3e1e251..073bcefd31 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -6846,6 +6846,18 @@ system and gives an overview of their function and contents. | |||
6846 | 6846 | ||
6847 | EXTRA_IMAGE_FEATURES += "read-only-rootfs" | 6847 | EXTRA_IMAGE_FEATURES += "read-only-rootfs" |
6848 | 6848 | ||
6849 | :term:`SETUPTOOLS_BUILD_ARGS` | ||
6850 | When used by recipes that inherit the | ||
6851 | :ref:`setuptools3 <ref-classes-setuptools3>` class, this variable can | ||
6852 | be used to specify additional arguments to be passed to ``setup.py build`` | ||
6853 | in the ``setuptools3_do_compile()`` task. | ||
6854 | |||
6855 | :term:`SETUPTOOLS_INSTALL_ARGS` | ||
6856 | When used by recipes that inherit the | ||
6857 | :ref:`setuptools3 <ref-classes-setuptools3>` class, this variable can | ||
6858 | be used to specify additional arguments to be passed to ``setup.py install`` | ||
6859 | in the ``setuptools3_do_install()`` task. | ||
6860 | |||
6849 | :term:`SETUPTOOLS_SETUP_PATH` | 6861 | :term:`SETUPTOOLS_SETUP_PATH` |
6850 | When used by recipes that inherit the | 6862 | When used by recipes that inherit the |
6851 | :ref:`setuptools3 <ref-classes-setuptools3>` class, this variable should | 6863 | :ref:`setuptools3 <ref-classes-setuptools3>` class, this variable should |