From e34e7b87ea7a062b424e1ceaec57415ceefe869b Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Sat, 14 May 2022 16:57:31 +0900 Subject: [PATCH] romio341: do not include auto-generated file in the dist tarball 3rd-party/romio341/mpl/include/mplconfig.h is automatically generated and hence should not be part of the dist tarball. Refs. open-mpi/ompi#10373 Signed-off-by: Gilles Gouaillardet --- 3rd-party/romio341/mpl/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/3rd-party/romio341/mpl/Makefile.am b/3rd-party/romio341/mpl/Makefile.am index 44e2e103757..fad952f9a93 100644 --- a/3rd-party/romio341/mpl/Makefile.am +++ b/3rd-party/romio341/mpl/Makefile.am @@ -36,7 +36,6 @@ mpl_headers = \ include/mpl_gpu_fallback.h\ include/mpl_gpu_ze.h \ include/mpl_math.h \ - include/mplconfig.h \ include/utlist.h \ include/mpl_valgrind.h \ include/mpl_env.h \ @@ -75,9 +74,11 @@ mpl_headers = \ if MPL_EMBEDDED_MODE noinst_HEADERS += $(mpl_headers) +nodist_noinst_HEADERS = include/mplconfig.h noinst_LTLIBRARIES = lib@MPLLIBNAME@.la else !MPL_EMBEDDED_MODE include_HEADERS = $(mpl_headers) +nodist_include_HEADERS = include/mplconfig.h lib_LTLIBRARIES = lib@MPLLIBNAME@.la endif !MPL_EMBEDDED_MODE