diff options
author | Antonin Godard <antonin.godard@bootlin.com> | 2025-03-25 10:20:52 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-05-25 12:37:57 +0100 |
commit | 5377678cf5311e33dca90eeb28a28d39a17f8f3e (patch) | |
tree | 229e3e9ea64e6ab4e9fd7f0b8666edab5194f601 /documentation | |
parent | 28435a64645f4ace92d79f3fc42d9fef2066ec83 (diff) | |
download | poky-5377678cf5311e33dca90eeb28a28d39a17f8f3e.tar.gz |
ref-manual/variables.rst: document autotools class related variables
Document the AUTOTOOLS_SCRIPT_PATH and the CONFIGURE_SCRIPT variables.
(From yocto-docs rev: 1065f57bc029e58570de6bb28062c17130e8a102)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/ref-manual/variables.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index baa897c05f..0939994497 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -224,6 +224,12 @@ system and gives an overview of their function and contents. | |||
224 | must set this variable in your recipe. The | 224 | must set this variable in your recipe. The |
225 | :ref:`ref-classes-syslinux` class checks this variable. | 225 | :ref:`ref-classes-syslinux` class checks this variable. |
226 | 226 | ||
227 | :term:`AUTOTOOLS_SCRIPT_PATH` | ||
228 | When using the :ref:`ref-classes-autotools` class, the | ||
229 | :term:`AUTOTOOLS_SCRIPT_PATH` variable stores the location of the | ||
230 | different scripts used by the Autotools build system. The default | ||
231 | value for this variable is :term:`S`. | ||
232 | |||
227 | :term:`AVAILTUNES` | 233 | :term:`AVAILTUNES` |
228 | The list of defined CPU and Application Binary Interface (ABI) | 234 | The list of defined CPU and Application Binary Interface (ABI) |
229 | tunings (i.e. "tunes") available for use by the OpenEmbedded build | 235 | tunings (i.e. "tunes") available for use by the OpenEmbedded build |
@@ -1494,6 +1500,17 @@ system and gives an overview of their function and contents. | |||
1494 | :term:`CONFIGURE_FLAGS` | 1500 | :term:`CONFIGURE_FLAGS` |
1495 | The minimal arguments for GNU configure. | 1501 | The minimal arguments for GNU configure. |
1496 | 1502 | ||
1503 | :term:`CONFIGURE_SCRIPT` | ||
1504 | When using the :ref:`ref-classes-autotools` class, the | ||
1505 | :term:`CONFIGURE_SCRIPT` variable stores the location of the ``configure`` | ||
1506 | script for the Autotools build system. The default definition for this | ||
1507 | variable is:: | ||
1508 | |||
1509 | CONFIGURE_SCRIPT ?= "${AUTOTOOLS_SCRIPT_PATH}/configure" | ||
1510 | |||
1511 | Where :term:`AUTOTOOLS_SCRIPT_PATH` is the location of the of the | ||
1512 | Autotools build system scripts, which defaults to :term:`S`. | ||
1513 | |||
1497 | :term:`CONFLICT_DISTRO_FEATURES` | 1514 | :term:`CONFLICT_DISTRO_FEATURES` |
1498 | When inheriting the :ref:`ref-classes-features_check` | 1515 | When inheriting the :ref:`ref-classes-features_check` |
1499 | class, this variable identifies distribution features that would be | 1516 | class, this variable identifies distribution features that would be |