PMIx and PRRTe: disabled use of sphinx (#37750)

Related to https://github.com/spack/spack/pull/37717

No need to be rebuilding openmpi man pages and other docs in
spack as it almost always is used with release tarballs.

See #37717 for more details.

Signed-off-by: Howard Pritchard <howardp@lanl.gov>
This commit is contained in:
Howard Pritchard 2023-05-26 01:49:02 -06:00 committed by GitHub
parent 0b12a480eb
commit 7f18f6f8a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ def find_external_lib_path(self, pkg_name, path_match_str=""):
def configure_args(self):
spec = self.spec
config_args = ["--enable-shared", "--enable-static"]
config_args = ["--enable-shared", "--enable-static", "--disable-sphinx"]
config_args.append("--with-libevent=" + spec["libevent"].prefix)
config_args.append("--with-hwloc=" + spec["hwloc"].prefix)

View File

@ -45,7 +45,7 @@ def autoreconf(self, spec, prefix):
def configure_args(self):
spec = self.spec
config_args = ["--enable-shared", "--enable-static"]
config_args = ["--enable-shared", "--enable-static", "--disable-sphinx"]
# libevent
config_args.append("--with-libevent={0}".format(spec["libevent"].prefix))