summaryrefslogtreecommitdiff
path: root/lib/spack/docs/build_systems
diff options
context:
space:
mode:
author百地 希留耶 <65301509+KiruyaMomochi@users.noreply.github.com>2022-03-28 06:42:29 +0800
committerGitHub <noreply@github.com>2022-03-27 22:42:29 +0000
commitcd00eba9d60dbeccd272e78544919846aa91c1e7 (patch)
tree9cedfc05b9d138cc98bcaf418bd31a2f3be6a311 /lib/spack/docs/build_systems
parent073330e89347d236713abb123edaf0577a75ca84 (diff)
downloadspack-cd00eba9d60dbeccd272e78544919846aa91c1e7.tar.gz
spack-cd00eba9d60dbeccd272e78544919846aa91c1e7.tar.bz2
spack-cd00eba9d60dbeccd272e78544919846aa91c1e7.tar.xz
spack-cd00eba9d60dbeccd272e78544919846aa91c1e7.zip
autotools doc: add missing right quote (#29734)
Diffstat (limited to 'lib/spack/docs/build_systems')
-rw-r--r--lib/spack/docs/build_systems/autotoolspackage.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/docs/build_systems/autotoolspackage.rst b/lib/spack/docs/build_systems/autotoolspackage.rst
index 8e7e7d5d91..d341d28d08 100644
--- a/lib/spack/docs/build_systems/autotoolspackage.rst
+++ b/lib/spack/docs/build_systems/autotoolspackage.rst
@@ -433,7 +433,7 @@ For example:
.. code-block:: python
variant('profiler', when='@2.0:')
- config_args += self.with_or_without('profiler)
+ config_args += self.with_or_without('profiler')
will neither add ``--with-profiler`` nor ``--without-profiler`` when the version is
below ``2.0``.