Skip to content

Commit 26aeb59

Browse files
Merge pull request #8280 from ggouaillardet/topic/dist_cleanup
do not include automatically generated file into the dist tarball
2 parents 2d5e666 + 6f282bd commit 26aeb59

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

ompi/mpi/fortran/use-mpi-f08/mod/Makefile.am

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ libforce_usempif08_internal_modules_to_be_built_la_SOURCES = \
6262
pmpi-f08-interfaces.F90 \
6363
mpi-f08-interfaces-callbacks.F90
6464

65-
noinst_HEADERS = mpi-f08-interfaces.h mpi-f08-rename.h
65+
nodist_noinst_HEADERS = mpi-f08-interfaces.h
6666

67+
noinst_HEADERS = mpi-f08-rename.h
6768

6869
libforce_usempi_internal_modules_to_be_built.la: libusempif08_internal_modules.la
6970

ompi/mpiext/shortfloat/c/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
ompidir = $(ompiincludedir)/mpiext
1515

1616
# This is the header file that is installed.
17-
ompi_HEADERS = mpiext_shortfloat_c.h
17+
nodist_ompi_HEADERS = mpiext_shortfloat_c.h

ompi/mpiext/shortfloat/mpif-h/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ ompidir = $(ompiincludedir)/mpiext
1313

1414
# Just like noinst_LTLIBRARIES, set this macro to empty and
1515
# conditionally add to it later.
16-
ompi_HEADERS =
16+
nodist_ompi_HEADERS =
1717

1818
# Use the Automake conditional to know if we're building the mpif.h
1919
# bindings.
2020
if OMPI_BUILD_FORTRAN_MPIFH_BINDINGS
2121

2222
# This is the header file that is installed.
23-
ompi_HEADERS += mpiext_shortfloat_mpifh.h
23+
nodist_ompi_HEADERS += mpiext_shortfloat_mpifh.h
2424

2525
endif

ompi/mpiext/shortfloat/use-mpi-f08/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ if OMPI_BUILD_FORTRAN_USEMPIF08_BINDINGS
2020
# mpiext_shortfloat_usempif08.h is automatically slurped up into the
2121
# mpi_f08_ext module. It must be listed so that it is included in
2222
# dist tarballs.
23-
noinst_HEADERS = mpiext_shortfloat_usempif08.h
23+
nodist_noinst_HEADERS = mpiext_shortfloat_usempif08.h
2424

2525
endif

0 commit comments

Comments
 (0)