Skip to content

Commit 13c84b6

Browse files
committed
packaging: fix typo
1 parent e78a6d9 commit 13c84b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tutorial_packaging.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ We also need to explicitly specify the ``build_system`` directive, and add condi
611611
with when("build_system=autotools"):
612612
depends_on("automake", type="build")
613613
depends_on("autoconf", type="build")
614-
depends_on("libtools", type="build")
614+
depends_on("libtool", type="build")
615615
616616
As we saw with :ref:`tutorial-mpileaks <info_mpileaks>`, each spec has a ``build_system`` variant that specifies the build system it uses.
617617
In most cases that variant has a single allowed value, inherited from the corresponding base package - so, usually, you don't have to think about it.
@@ -620,7 +620,7 @@ When your package supports more than one build system though, you have to explic
620620
In the example above it's ``cmake`` for version 0.64 and higher and ``autotools`` for version 0.63 and lower.
621621

622622
The ``build_system`` variant can also be used to declare other properties which are conditional on the build system being selected.
623-
For instance, above we use the ``when`` context manager to declare that ``autotools`` builds depend on ``automake``, ``autoconf``, and ``libtools`` being installed first.
623+
For instance, above we use the ``when`` context manager to declare that ``autotools`` builds depend on ``automake``, ``autoconf``, and ``libtool`` being installed first.
624624

625625
The other relevant difference, compared to previous recipes we have seen so far, is that the code prescribing the installation procedure will live in two separate classes:
626626

0 commit comments

Comments
 (0)