1
1

Merge pull request #8280 from ggouaillardet/topic/dist_cleanup

do not include automatically generated file into the dist tarball
Этот коммит содержится в:
Gilles Gouaillardet 2020-12-11 23:08:09 +09:00 коммит произвёл GitHub
родитель 2d5e666808 6f282bd385
Коммит 26aeb59f6d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -62,8 +62,9 @@ libforce_usempif08_internal_modules_to_be_built_la_SOURCES = \
pmpi-f08-interfaces.F90 \
mpi-f08-interfaces-callbacks.F90
noinst_HEADERS = mpi-f08-interfaces.h mpi-f08-rename.h
nodist_noinst_HEADERS = mpi-f08-interfaces.h
noinst_HEADERS = mpi-f08-rename.h
libforce_usempi_internal_modules_to_be_built.la: libusempif08_internal_modules.la

Просмотреть файл

@ -14,4 +14,4 @@
ompidir = $(ompiincludedir)/mpiext
# This is the header file that is installed.
ompi_HEADERS = mpiext_shortfloat_c.h
nodist_ompi_HEADERS = mpiext_shortfloat_c.h

Просмотреть файл

@ -13,13 +13,13 @@ ompidir = $(ompiincludedir)/mpiext
# Just like noinst_LTLIBRARIES, set this macro to empty and
# conditionally add to it later.
ompi_HEADERS =
nodist_ompi_HEADERS =
# Use the Automake conditional to know if we're building the mpif.h
# bindings.
if OMPI_BUILD_FORTRAN_MPIFH_BINDINGS
# This is the header file that is installed.
ompi_HEADERS += mpiext_shortfloat_mpifh.h
nodist_ompi_HEADERS += mpiext_shortfloat_mpifh.h
endif

Просмотреть файл

@ -20,6 +20,6 @@ if OMPI_BUILD_FORTRAN_USEMPIF08_BINDINGS
# mpiext_shortfloat_usempif08.h is automatically slurped up into the
# mpi_f08_ext module. It must be listed so that it is included in
# dist tarballs.
noinst_HEADERS = mpiext_shortfloat_usempif08.h
nodist_noinst_HEADERS = mpiext_shortfloat_usempif08.h
endif