openmpi:add pandoc dependency when building master (#25319)

related to #25304

Signed-off-by: Howard Pritchard <howardp@lanl.gov>
This commit is contained in:
Howard Pritchard 2021-08-10 01:02:19 -06:00 committed by GitHub
parent e44de970f8
commit d3f67a4855
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -176,7 +176,7 @@ class Openmpi(AutotoolsPackage):
patch('nag_pthread/2.0.0_2.1.1.patch', when='@2.0.0:2.1.1%nag')
patch('nag_pthread/1.10.4_1.10.999.patch', when='@1.10.4:1.10.999%nag')
patch('nvhpc-libtool.patch', when='@develop %nvhpc')
patch('nvhpc-libtool.patch', when='@master %nvhpc')
patch('nvhpc-configure.patch', when='%nvhpc')
# Fix MPI_Sizeof() in the "mpi" Fortran module for compilers that do not
@ -266,10 +266,11 @@ class Openmpi(AutotoolsPackage):
if sys.platform != 'darwin':
depends_on('numactl')
depends_on('autoconf', type='build', when='@develop')
depends_on('automake', type='build', when='@develop')
depends_on('libtool', type='build', when='@develop')
depends_on('m4', type='build', when='@develop')
depends_on('autoconf', type='build', when='@master')
depends_on('automake', type='build', when='@master')
depends_on('libtool', type='build', when='@master')
depends_on('m4', type='build', when='@master')
depends_on('pandoc', type='build', when='@master')
depends_on('perl', type='build')
depends_on('pkgconfig', type='build')