diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-08-24 16:55:00 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2016-08-30 15:32:54 -0500 |
commit | f78134efa54baef2c1ef13167bf49859c84d3643 (patch) | |
tree | 882299751deb2bbd47b4e23817893f9d39180a39 /lib | |
parent | 867a92f08395aa2ceab3ba58f2fe229682b8c2c9 (diff) | |
download | spack-f78134efa54baef2c1ef13167bf49859c84d3643.tar.gz spack-f78134efa54baef2c1ef13167bf49859c84d3643.tar.bz2 spack-f78134efa54baef2c1ef13167bf49859c84d3643.tar.xz spack-f78134efa54baef2c1ef13167bf49859c84d3643.zip |
Fixes #1620, Missing references
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/configuration.rst | 2 | ||||
-rw-r--r-- | lib/spack/docs/packaging_guide.rst | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/lib/spack/docs/configuration.rst b/lib/spack/docs/configuration.rst index bce6005a7c..7545acd62a 100644 --- a/lib/spack/docs/configuration.rst +++ b/lib/spack/docs/configuration.rst @@ -130,6 +130,8 @@ The ``buildable`` does not need to be paired with external packages. It could also be used alone to forbid packages that may be buggy or otherwise undesirable. +.. _concretization-preferences: + -------------------------- Concretization Preferences -------------------------- diff --git a/lib/spack/docs/packaging_guide.rst b/lib/spack/docs/packaging_guide.rst index 0c0554c24a..eae928ec76 100644 --- a/lib/spack/docs/packaging_guide.rst +++ b/lib/spack/docs/packaging_guide.rst @@ -1833,6 +1833,8 @@ running ``spack spec``. For example: This is useful when you want to know exactly what Spack will do when you ask for a particular spec. +.. _concretization-policies: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``Concretization Policies`` ^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1842,8 +1844,7 @@ be concretized on their system. For example, one user may prefer packages built with OpenMPI and the Intel compiler. Another user may prefer packages be built with MVAPICH and GCC. -See the `documentation in the config section <concretization-preferences_>`_ -for more details. +See the :ref:`concretization-preferences` section for more details. .. _install-method: @@ -2465,7 +2466,7 @@ Callable wrappers also allow spack to provide some special features. For example, in Spack, ``make`` is parallel by default, and Spack figures out the number of cores on your machine and passes an appropriate value for ``-j<numjobs>`` when it calls ``make`` (see the -``parallel`` package attribute under :ref:`metadata <metadata>`). In +``parallel`` `package attribute <attribute_parallel>`). In a package file, you can supply a keyword argument, ``parallel=False``, to the ``make`` wrapper to disable parallel make. In the ``libelf`` package, this allows us to avoid race conditions in the library's |