diff --git a/lib/spack/docs/build_systems/autotoolspackage.rst b/lib/spack/docs/build_systems/autotoolspackage.rst index 106192c59ad..d5569e7c73f 100644 --- a/lib/spack/docs/build_systems/autotoolspackage.rst +++ b/lib/spack/docs/build_systems/autotoolspackage.rst @@ -272,9 +272,9 @@ often lists dependencies and the flags needed to locate them. The "environment variables" section lists environment variables that the build system uses to pass flags to the compiler and linker. -^^^^^^^^^^^^^^^^^^^^^^^^^^ -Addings flags to configure -^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^ +Adding flags to configure +^^^^^^^^^^^^^^^^^^^^^^^^^ For most of the flags you encounter, you will want a variant to optionally enable/disable them. You can then optionally pass these @@ -285,7 +285,7 @@ function like so: def configure_args(self): args = [] - + ... if self.spec.satisfies("+mpi"): args.append("--enable-mpi") else: @@ -299,7 +299,10 @@ Alternatively, you can use the :ref:`enable_or_disable