diff options
author | 谭九鼎 <109224573@qq.com> | 2020-10-10 00:24:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 11:24:09 -0500 |
commit | 5e9f4dc982458cd1a4eca6b72a3120b4a1d5066d (patch) | |
tree | c18ba822e00027cc9086e2962df95812cf004f58 /lib | |
parent | 47e253f7fe14673fcc04954df7207d5e90c257e0 (diff) | |
download | spack-5e9f4dc982458cd1a4eca6b72a3120b4a1d5066d.tar.gz spack-5e9f4dc982458cd1a4eca6b72a3120b4a1d5066d.tar.bz2 spack-5e9f4dc982458cd1a4eca6b72a3120b4a1d5066d.tar.xz spack-5e9f4dc982458cd1a4eca6b72a3120b4a1d5066d.zip |
Use https for links (#19244)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/_gh_pages_redirect/index.html | 4 | ||||
-rw-r--r-- | lib/spack/docs/packaging_guide.rst | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/spack/docs/_gh_pages_redirect/index.html b/lib/spack/docs/_gh_pages_redirect/index.html index 9c456abdaa..656041a163 100644 --- a/lib/spack/docs/_gh_pages_redirect/index.html +++ b/lib/spack/docs/_gh_pages_redirect/index.html @@ -1,10 +1,10 @@ <html> <head> - <meta http-equiv="refresh" content="0; url=http://spack.readthedocs.io/" /> + <meta http-equiv="refresh" content="0; url=https://spack.readthedocs.io/" /> </head> <body> <p> - This page has moved to <a href="http://spack.readthedocs.io/">http://spack.readthedocs.io/</a> + This page has moved to <a href="https://spack.readthedocs.io/">https://spack.readthedocs.io/</a> </p> </body> </html> diff --git a/lib/spack/docs/packaging_guide.rst b/lib/spack/docs/packaging_guide.rst index 156b5a7eb2..66caddeb0b 100644 --- a/lib/spack/docs/packaging_guide.rst +++ b/lib/spack/docs/packaging_guide.rst @@ -3116,7 +3116,7 @@ differ from package to package. In order to make the ``install()`` method independent of the choice of ``Blas`` implementation, each package which provides it implements ``@property def blas_libs(self):`` to return an object of -`LibraryList <http://spack.readthedocs.io/en/latest/llnl.util.html#llnl.util.filesystem.LibraryList>`_ +`LibraryList <https://spack.readthedocs.io/en/latest/llnl.util.html#llnl.util.filesystem.LibraryList>`_ type which simplifies usage of a set of libraries. The same applies to packages which provide ``Lapack`` and ``ScaLapack``. Package developers are requested to use this interface. Common usage cases are: @@ -3151,7 +3151,7 @@ Package developers are requested to use this interface. Common usage cases are: For more information, see documentation of -`LibraryList <http://spack.readthedocs.io/en/latest/llnl.util.html#llnl.util.filesystem.LibraryList>`_ +`LibraryList <https://spack.readthedocs.io/en/latest/llnl.util.html#llnl.util.filesystem.LibraryList>`_ class. |