commit d6841257871b4697a1cc7ceac662f03ed5a7b0b6 Author: orbea Date: Wed Mar 17 08:31:27 2021 -0700 build: Fix -export-dynamic typos. diff --git a/contribs/nss_slurm/Makefile.am b/contribs/nss_slurm/Makefile.am index b61e76dbc2..a378980dfc 100644 --- a/contribs/nss_slurm/Makefile.am +++ b/contribs/nss_slurm/Makefile.am @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign AM_CPPFLAGS = -fPIC -I$(top_srcdir) -I$(top_srcdir)/src/common -PLUGIN_FLAGS = --export-dynamic -shrext .so.2 -avoid-version +PLUGIN_FLAGS = -export-dynamic -shrext .so.2 -avoid-version lib_LTLIBRARIES = libnss_slurm.la diff --git a/contribs/pam/Makefile.am b/contribs/pam/Makefile.am index 9d6f5ef563..c319e5831e 100644 --- a/contribs/pam/Makefile.am +++ b/contribs/pam/Makefile.am @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign AM_CPPFLAGS = -fPIC -I$(top_srcdir) -I$(top_srcdir)/src/common -PLUGIN_FLAGS = -module --export-dynamic -avoid-version +PLUGIN_FLAGS = -module -export-dynamic -avoid-version pkglibdir = $(PAM_DIR) diff --git a/contribs/pam_slurm_adopt/Makefile.am b/contribs/pam_slurm_adopt/Makefile.am index 1201efd9e9..4ad5b121f8 100644 --- a/contribs/pam_slurm_adopt/Makefile.am +++ b/contribs/pam_slurm_adopt/Makefile.am @@ -6,7 +6,7 @@ AUTOMAKE_OPTIONS = foreign AM_CPPFLAGS = -fPIC -I$(top_srcdir) -I$(top_srcdir)/src/common # -DLIBSLURM_SO=\"$(libdir)/libslurm.so\" -PLUGIN_FLAGS = -module --export-dynamic -avoid-version +PLUGIN_FLAGS = -module -export-dynamic -avoid-version pkglibdir = $(PAM_DIR) diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 71f04fd942..5181806216 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -153,7 +153,7 @@ libspank_la_SOURCES = \ libcommon_la_LIBADD = $(DL_LIBS) -libcommon_la_LDFLAGS = $(LIB_LDFLAGS) -module --export-dynamic +libcommon_la_LDFLAGS = $(LIB_LDFLAGS) -module -export-dynamic # This was made so we could export all symbols from libcommon # on multiple platforms diff --git a/src/plugins/accounting_storage/mysql/Makefile.am b/src/plugins/accounting_storage/mysql/Makefile.am index ec0576cc14..adb02098bc 100644 --- a/src/plugins/accounting_storage/mysql/Makefile.am +++ b/src/plugins/accounting_storage/mysql/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/accounting_storage/none/Makefile.am b/src/plugins/accounting_storage/none/Makefile.am index 575e75dca0..6ed72d323a 100644 --- a/src/plugins/accounting_storage/none/Makefile.am +++ b/src/plugins/accounting_storage/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/accounting_storage/slurmdbd/Makefile.am b/src/plugins/accounting_storage/slurmdbd/Makefile.am index 09d368572e..02ab93a95b 100644 --- a/src/plugins/accounting_storage/slurmdbd/Makefile.am +++ b/src/plugins/accounting_storage/slurmdbd/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/acct_gather_energy/ibmaem/Makefile.am b/src/plugins/acct_gather_energy/ibmaem/Makefile.am index e929caf230..41a26de415 100644 --- a/src/plugins/acct_gather_energy/ibmaem/Makefile.am +++ b/src/plugins/acct_gather_energy/ibmaem/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/acct_gather_energy/ipmi/Makefile.am b/src/plugins/acct_gather_energy/ipmi/Makefile.am index f19da8e8fe..4056fa73e7 100644 --- a/src/plugins/acct_gather_energy/ipmi/Makefile.am +++ b/src/plugins/acct_gather_energy/ipmi/Makefile.am @@ -9,7 +9,7 @@ AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $( if BUILD_IPMI -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic pkglib_LTLIBRARIES = acct_gather_energy_ipmi.la diff --git a/src/plugins/acct_gather_energy/none/Makefile.am b/src/plugins/acct_gather_energy/none/Makefile.am index 7bcada3290..2db5ac47e6 100644 --- a/src/plugins/acct_gather_energy/none/Makefile.am +++ b/src/plugins/acct_gather_energy/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/acct_gather_energy/pm_counters/Makefile.am b/src/plugins/acct_gather_energy/pm_counters/Makefile.am index f5f8945d12..3b5824e9a9 100644 --- a/src/plugins/acct_gather_energy/pm_counters/Makefile.am +++ b/src/plugins/acct_gather_energy/pm_counters/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/acct_gather_energy/rapl/Makefile.am b/src/plugins/acct_gather_energy/rapl/Makefile.am index e1f743dde6..51f967da20 100644 --- a/src/plugins/acct_gather_energy/rapl/Makefile.am +++ b/src/plugins/acct_gather_energy/rapl/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/acct_gather_energy/rsmi/Makefile.am b/src/plugins/acct_gather_energy/rsmi/Makefile.am index ad9c1a1390..688cca2a7b 100644 --- a/src/plugins/acct_gather_energy/rsmi/Makefile.am +++ b/src/plugins/acct_gather_energy/rsmi/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(RSMI_CPPFLAGS) diff --git a/src/plugins/acct_gather_energy/xcc/Makefile.am b/src/plugins/acct_gather_energy/xcc/Makefile.am index 0971fc5a4a..90eb87e880 100644 --- a/src/plugins/acct_gather_energy/xcc/Makefile.am +++ b/src/plugins/acct_gather_energy/xcc/Makefile.am @@ -9,7 +9,7 @@ AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $( if BUILD_IPMI -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic pkglib_LTLIBRARIES = acct_gather_energy_xcc.la diff --git a/src/plugins/acct_gather_filesystem/lustre/Makefile.am b/src/plugins/acct_gather_filesystem/lustre/Makefile.am index f473e4a039..6edff74c68 100644 --- a/src/plugins/acct_gather_filesystem/lustre/Makefile.am +++ b/src/plugins/acct_gather_filesystem/lustre/Makefile.am @@ -7,7 +7,7 @@ AUTOMAKE_OPTIONS = foreign AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic pkglib_LTLIBRARIES = acct_gather_filesystem_lustre.la diff --git a/src/plugins/acct_gather_filesystem/none/Makefile.am b/src/plugins/acct_gather_filesystem/none/Makefile.am index e62154c513..e19ce19f4f 100644 --- a/src/plugins/acct_gather_filesystem/none/Makefile.am +++ b/src/plugins/acct_gather_filesystem/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/acct_gather_interconnect/none/Makefile.am b/src/plugins/acct_gather_interconnect/none/Makefile.am index 00ef752da5..4cc9ec12af 100644 --- a/src/plugins/acct_gather_interconnect/none/Makefile.am +++ b/src/plugins/acct_gather_interconnect/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/acct_gather_interconnect/ofed/Makefile.am b/src/plugins/acct_gather_interconnect/ofed/Makefile.am index 32c2c0f675..1125b9f7f4 100644 --- a/src/plugins/acct_gather_interconnect/ofed/Makefile.am +++ b/src/plugins/acct_gather_interconnect/ofed/Makefile.am @@ -9,7 +9,7 @@ AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common if BUILD_OFED -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic pkglib_LTLIBRARIES = acct_gather_interconnect_ofed.la diff --git a/src/plugins/acct_gather_profile/hdf5/Makefile.am b/src/plugins/acct_gather_profile/hdf5/Makefile.am index 3521b8412c..106d84573b 100644 --- a/src/plugins/acct_gather_profile/hdf5/Makefile.am +++ b/src/plugins/acct_gather_profile/hdf5/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic # Do not put a link to common here. src/common contains an mpi.h which # hdf5 could of been installed with a link to the generic mpi.h. diff --git a/src/plugins/acct_gather_profile/influxdb/Makefile.am b/src/plugins/acct_gather_profile/influxdb/Makefile.am index a4c5a84f03..6f2c525e49 100644 --- a/src/plugins/acct_gather_profile/influxdb/Makefile.am +++ b/src/plugins/acct_gather_profile/influxdb/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(LIBCURL_CPPFLAGS) diff --git a/src/plugins/acct_gather_profile/none/Makefile.am b/src/plugins/acct_gather_profile/none/Makefile.am index 2eed17f590..d254967e76 100644 --- a/src/plugins/acct_gather_profile/none/Makefile.am +++ b/src/plugins/acct_gather_profile/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/auth/jwt/Makefile.am b/src/plugins/auth/jwt/Makefile.am index e3e66749ff..e58271d2fd 100644 --- a/src/plugins/auth/jwt/Makefile.am +++ b/src/plugins/auth/jwt/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(JWT_CPPFLAGS) diff --git a/src/plugins/auth/munge/Makefile.am b/src/plugins/auth/munge/Makefile.am index ab237ea858..1adb90247c 100644 --- a/src/plugins/auth/munge/Makefile.am +++ b/src/plugins/auth/munge/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(MUNGE_CPPFLAGS) diff --git a/src/plugins/auth/none/Makefile.am b/src/plugins/auth/none/Makefile.am index 99006b06a0..fad0be04b7 100644 --- a/src/plugins/auth/none/Makefile.am +++ b/src/plugins/auth/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/burst_buffer/datawarp/Makefile.am b/src/plugins/burst_buffer/datawarp/Makefile.am index 6ec2d31ef5..67e2ef6ef1 100644 --- a/src/plugins/burst_buffer/datawarp/Makefile.am +++ b/src/plugins/burst_buffer/datawarp/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(DATAWARP_CPPFLAGS) $(JSON_CPPFLAGS) diff --git a/src/plugins/burst_buffer/generic/Makefile.am b/src/plugins/burst_buffer/generic/Makefile.am index 94abc68f3c..1b8ce6d357 100644 --- a/src/plugins/burst_buffer/generic/Makefile.am +++ b/src/plugins/burst_buffer/generic/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/cli_filter/lua/Makefile.am b/src/plugins/cli_filter/lua/Makefile.am index 3e4b309ce5..8fe5fe5131 100644 --- a/src/plugins/cli_filter/lua/Makefile.am +++ b/src/plugins/cli_filter/lua/Makefile.am @@ -3,7 +3,7 @@ AUTOMAKE_OPTIONS = foreign CLEANFILES = core.* -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common \ -DDEFAULT_SCRIPT_DIR=\"$(sysconfdir)\" $(lua_CFLAGS) diff --git a/src/plugins/cli_filter/none/Makefile.am b/src/plugins/cli_filter/none/Makefile.am index 4da7d0bb29..b7635401c9 100644 --- a/src/plugins/cli_filter/none/Makefile.am +++ b/src/plugins/cli_filter/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/cli_filter/syslog/Makefile.am b/src/plugins/cli_filter/syslog/Makefile.am index 8ae3d2822a..8af7a4132e 100644 --- a/src/plugins/cli_filter/syslog/Makefile.am +++ b/src/plugins/cli_filter/syslog/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/cli_filter/user_defaults/Makefile.am b/src/plugins/cli_filter/user_defaults/Makefile.am index 8b6e6b6163..e92871d336 100644 --- a/src/plugins/cli_filter/user_defaults/Makefile.am +++ b/src/plugins/cli_filter/user_defaults/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/core_spec/cray_aries/Makefile.am b/src/plugins/core_spec/cray_aries/Makefile.am index 9319a61681..cc960460ab 100644 --- a/src/plugins/core_spec/cray_aries/Makefile.am +++ b/src/plugins/core_spec/cray_aries/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/core_spec/none/Makefile.am b/src/plugins/core_spec/none/Makefile.am index 72bed0044c..f2575b8bfe 100644 --- a/src/plugins/core_spec/none/Makefile.am +++ b/src/plugins/core_spec/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/cred/munge/Makefile.am b/src/plugins/cred/munge/Makefile.am index dd962cd35c..f39e13413e 100644 --- a/src/plugins/cred/munge/Makefile.am +++ b/src/plugins/cred/munge/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(MUNGE_CPPFLAGS) diff --git a/src/plugins/cred/none/Makefile.am b/src/plugins/cred/none/Makefile.am index 648a705ea9..38bb2d19e7 100644 --- a/src/plugins/cred/none/Makefile.am +++ b/src/plugins/cred/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/ext_sensors/none/Makefile.am b/src/plugins/ext_sensors/none/Makefile.am index bbf5190de5..39a2463355 100644 --- a/src/plugins/ext_sensors/none/Makefile.am +++ b/src/plugins/ext_sensors/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/ext_sensors/rrd/Makefile.am b/src/plugins/ext_sensors/rrd/Makefile.am index 0e0bf3a958..af307daa57 100644 --- a/src/plugins/ext_sensors/rrd/Makefile.am +++ b/src/plugins/ext_sensors/rrd/Makefile.am @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(RRDTOOL_CPPFLAGS) if BUILD_RRD -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic pkglib_LTLIBRARIES = ext_sensors_rrd.la diff --git a/src/plugins/gpu/generic/Makefile.am b/src/plugins/gpu/generic/Makefile.am index efdfb2e502..c99cbf91f5 100644 --- a/src/plugins/gpu/generic/Makefile.am +++ b/src/plugins/gpu/generic/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/gpu/nvml/Makefile.am b/src/plugins/gpu/nvml/Makefile.am index 78aa2e9ae8..67f9db9419 100644 --- a/src/plugins/gpu/nvml/Makefile.am +++ b/src/plugins/gpu/nvml/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(NVML_CPPFLAGS) diff --git a/src/plugins/gpu/rsmi/Makefile.am b/src/plugins/gpu/rsmi/Makefile.am index ef8e973501..3572c8dd64 100644 --- a/src/plugins/gpu/rsmi/Makefile.am +++ b/src/plugins/gpu/rsmi/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(RSMI_CPPFLAGS) diff --git a/src/plugins/gres/gpu/Makefile.am b/src/plugins/gres/gpu/Makefile.am index d2e53566b7..47949ba6a6 100644 --- a/src/plugins/gres/gpu/Makefile.am +++ b/src/plugins/gres/gpu/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/gres/mps/Makefile.am b/src/plugins/gres/mps/Makefile.am index 8c77e9bc7a..8917687046 100644 --- a/src/plugins/gres/mps/Makefile.am +++ b/src/plugins/gres/mps/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(NVML_CPPFLAGS) diff --git a/src/plugins/gres/nic/Makefile.am b/src/plugins/gres/nic/Makefile.am index e7061bd5b2..0139a48e40 100644 --- a/src/plugins/gres/nic/Makefile.am +++ b/src/plugins/gres/nic/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/job_container/cncu/Makefile.am b/src/plugins/job_container/cncu/Makefile.am index 99483964c0..49420300f5 100644 --- a/src/plugins/job_container/cncu/Makefile.am +++ b/src/plugins/job_container/cncu/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(CRAY_JOB_CPPFLAGS) diff --git a/src/plugins/job_container/none/Makefile.am b/src/plugins/job_container/none/Makefile.am index d4055359c2..0aa58e64a8 100644 --- a/src/plugins/job_container/none/Makefile.am +++ b/src/plugins/job_container/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/job_container/tmpfs/Makefile.am b/src/plugins/job_container/tmpfs/Makefile.am index 5a63f8ffa4..3ae9dc43f2 100644 --- a/src/plugins/job_container/tmpfs/Makefile.am +++ b/src/plugins/job_container/tmpfs/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/job_submit/all_partitions/Makefile.am b/src/plugins/job_submit/all_partitions/Makefile.am index aaebc161c1..a770857526 100644 --- a/src/plugins/job_submit/all_partitions/Makefile.am +++ b/src/plugins/job_submit/all_partitions/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/job_submit/cray_aries/Makefile.am b/src/plugins/job_submit/cray_aries/Makefile.am index d718b50720..ece4fd5815 100644 --- a/src/plugins/job_submit/cray_aries/Makefile.am +++ b/src/plugins/job_submit/cray_aries/Makefile.am @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -DDEFAULT_SCRIPT_DIR=\"$(sysconfdir)\" \ -I$(top_srcdir) -I$(top_srcdir)/src/common -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic pkglib_LTLIBRARIES = job_submit_cray_aries.la job_submit_cray_aries_la_SOURCES = job_submit_cray_aries.c diff --git a/src/plugins/job_submit/defaults/Makefile.am b/src/plugins/job_submit/defaults/Makefile.am index c18b162566..6962b4fe37 100644 --- a/src/plugins/job_submit/defaults/Makefile.am +++ b/src/plugins/job_submit/defaults/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/job_submit/logging/Makefile.am b/src/plugins/job_submit/logging/Makefile.am index 22da0d4adb..bdad1a28e5 100644 --- a/src/plugins/job_submit/logging/Makefile.am +++ b/src/plugins/job_submit/logging/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/job_submit/lua/Makefile.am b/src/plugins/job_submit/lua/Makefile.am index 004937834e..088b2ec163 100644 --- a/src/plugins/job_submit/lua/Makefile.am +++ b/src/plugins/job_submit/lua/Makefile.am @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -DDEFAULT_SCRIPT_DIR=\"$(sysconfdir)\" \ -I$(top_srcdir) -I$(top_srcdir)/src/common $(lua_CFLAGS) -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic if HAVE_LUA diff --git a/src/plugins/job_submit/partition/Makefile.am b/src/plugins/job_submit/partition/Makefile.am index 03869639da..4de387b1cc 100644 --- a/src/plugins/job_submit/partition/Makefile.am +++ b/src/plugins/job_submit/partition/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/job_submit/pbs/Makefile.am b/src/plugins/job_submit/pbs/Makefile.am index f0c214095f..76e3be022d 100644 --- a/src/plugins/job_submit/pbs/Makefile.am +++ b/src/plugins/job_submit/pbs/Makefile.am @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -DDEFAULT_SCRIPT_DIR=\"$(sysconfdir)\" \ -I$(top_srcdir) -I$(top_srcdir)/src/common -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic # Job submit PBS plugin. pkglib_LTLIBRARIES = job_submit_pbs.la spank_pbs.la diff --git a/src/plugins/job_submit/require_timelimit/Makefile.am b/src/plugins/job_submit/require_timelimit/Makefile.am index 09a1e0f77e..b760cdf6d8 100644 --- a/src/plugins/job_submit/require_timelimit/Makefile.am +++ b/src/plugins/job_submit/require_timelimit/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/job_submit/throttle/Makefile.am b/src/plugins/job_submit/throttle/Makefile.am index 228951ac12..f92a64e70a 100644 --- a/src/plugins/job_submit/throttle/Makefile.am +++ b/src/plugins/job_submit/throttle/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/jobacct_gather/cgroup/Makefile.am b/src/plugins/jobacct_gather/cgroup/Makefile.am index 3dece9e842..c23220eb99 100644 --- a/src/plugins/jobacct_gather/cgroup/Makefile.am +++ b/src/plugins/jobacct_gather/cgroup/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(HWLOC_CPPFLAGS) diff --git a/src/plugins/jobacct_gather/linux/Makefile.am b/src/plugins/jobacct_gather/linux/Makefile.am index 5e9b59fb36..0b712d8512 100644 --- a/src/plugins/jobacct_gather/linux/Makefile.am +++ b/src/plugins/jobacct_gather/linux/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/jobacct_gather/none/Makefile.am b/src/plugins/jobacct_gather/none/Makefile.am index 4690e8dd91..a258d6c382 100644 --- a/src/plugins/jobacct_gather/none/Makefile.am +++ b/src/plugins/jobacct_gather/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/jobcomp/elasticsearch/Makefile.am b/src/plugins/jobcomp/elasticsearch/Makefile.am index 38e380f5cc..37d7c22c2a 100644 --- a/src/plugins/jobcomp/elasticsearch/Makefile.am +++ b/src/plugins/jobcomp/elasticsearch/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(LIBCURL_CPPFLAGS) diff --git a/src/plugins/jobcomp/filetxt/Makefile.am b/src/plugins/jobcomp/filetxt/Makefile.am index ea0eaca819..221b2791ed 100644 --- a/src/plugins/jobcomp/filetxt/Makefile.am +++ b/src/plugins/jobcomp/filetxt/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/jobcomp/lua/Makefile.am b/src/plugins/jobcomp/lua/Makefile.am index ec6311ad5c..d566b9496e 100644 --- a/src/plugins/jobcomp/lua/Makefile.am +++ b/src/plugins/jobcomp/lua/Makefile.am @@ -3,7 +3,7 @@ AUTOMAKE_OPTIONS = foreign CLEANFILES = core.* -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common \ -DDEFAULT_SCRIPT_DIR=\"$(sysconfdir)\" $(lua_CFLAGS) diff --git a/src/plugins/jobcomp/mysql/Makefile.am b/src/plugins/jobcomp/mysql/Makefile.am index a487ca15d4..6644969441 100644 --- a/src/plugins/jobcomp/mysql/Makefile.am +++ b/src/plugins/jobcomp/mysql/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/jobcomp/none/Makefile.am b/src/plugins/jobcomp/none/Makefile.am index 8f631ca024..4bced95455 100644 --- a/src/plugins/jobcomp/none/Makefile.am +++ b/src/plugins/jobcomp/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/jobcomp/script/Makefile.am b/src/plugins/jobcomp/script/Makefile.am index 850ad13274..999e2db44c 100644 --- a/src/plugins/jobcomp/script/Makefile.am +++ b/src/plugins/jobcomp/script/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/launch/slurm/Makefile.am b/src/plugins/launch/slurm/Makefile.am index 05c1976da8..398d89d89a 100644 --- a/src/plugins/launch/slurm/Makefile.am +++ b/src/plugins/launch/slurm/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/mcs/account/Makefile.am b/src/plugins/mcs/account/Makefile.am index 3a0dc22bac..055125e6dc 100644 --- a/src/plugins/mcs/account/Makefile.am +++ b/src/plugins/mcs/account/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/mcs/group/Makefile.am b/src/plugins/mcs/group/Makefile.am index 8970ead12d..e1bcb58f4e 100644 --- a/src/plugins/mcs/group/Makefile.am +++ b/src/plugins/mcs/group/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/mcs/none/Makefile.am b/src/plugins/mcs/none/Makefile.am index 846b518d6f..32aa13bc65 100644 --- a/src/plugins/mcs/none/Makefile.am +++ b/src/plugins/mcs/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/mcs/user/Makefile.am b/src/plugins/mcs/user/Makefile.am index e718ef305c..520fc3f03c 100644 --- a/src/plugins/mcs/user/Makefile.am +++ b/src/plugins/mcs/user/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/mpi/cray_shasta/Makefile.am b/src/plugins/mpi/cray_shasta/Makefile.am index 01a8d32967..4c24e50be8 100644 --- a/src/plugins/mpi/cray_shasta/Makefile.am +++ b/src/plugins/mpi/cray_shasta/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/mpi/none/Makefile.am b/src/plugins/mpi/none/Makefile.am index 67fc9ad2b0..077934b835 100644 --- a/src/plugins/mpi/none/Makefile.am +++ b/src/plugins/mpi/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/mpi/pmi2/Makefile.am b/src/plugins/mpi/pmi2/Makefile.am index 52a0b91b4a..5c9bde373c 100644 --- a/src/plugins/mpi/pmi2/Makefile.am +++ b/src/plugins/mpi/pmi2/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/mpi/pmix/Makefile.am b/src/plugins/mpi/pmix/Makefile.am index e4127cc22b..1b3b2ac2cd 100755 --- a/src/plugins/mpi/pmix/Makefile.am +++ b/src/plugins/mpi/pmix/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(HWLOC_CPPFLAGS) \ $(UCX_CPPFLAGS) diff --git a/src/plugins/node_features/knl_cray/Makefile.am b/src/plugins/node_features/knl_cray/Makefile.am index 5b070d16a0..85580b1102 100644 --- a/src/plugins/node_features/knl_cray/Makefile.am +++ b/src/plugins/node_features/knl_cray/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic if WITH_JSON_PARSER diff --git a/src/plugins/node_features/knl_generic/Makefile.am b/src/plugins/node_features/knl_generic/Makefile.am index 7081f0ff97..1a1ac42c9b 100644 --- a/src/plugins/node_features/knl_generic/Makefile.am +++ b/src/plugins/node_features/knl_generic/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/power/cray_aries/Makefile.am b/src/plugins/power/cray_aries/Makefile.am index 9a0def5994..06304ccd2a 100644 --- a/src/plugins/power/cray_aries/Makefile.am +++ b/src/plugins/power/cray_aries/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic if WITH_JSON_PARSER diff --git a/src/plugins/power/none/Makefile.am b/src/plugins/power/none/Makefile.am index 07d0b1e327..e1d41bb30a 100644 --- a/src/plugins/power/none/Makefile.am +++ b/src/plugins/power/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/preempt/none/Makefile.am b/src/plugins/preempt/none/Makefile.am index 0254ebe4c3..c5ec097553 100644 --- a/src/plugins/preempt/none/Makefile.am +++ b/src/plugins/preempt/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/preempt/partition_prio/Makefile.am b/src/plugins/preempt/partition_prio/Makefile.am index 8240693738..402b764031 100644 --- a/src/plugins/preempt/partition_prio/Makefile.am +++ b/src/plugins/preempt/partition_prio/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/preempt/qos/Makefile.am b/src/plugins/preempt/qos/Makefile.am index 8a32067dac..0dfcdaa923 100644 --- a/src/plugins/preempt/qos/Makefile.am +++ b/src/plugins/preempt/qos/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/prep/script/Makefile.am b/src/plugins/prep/script/Makefile.am index 1e075626d6..ba3a2f430c 100644 --- a/src/plugins/prep/script/Makefile.am +++ b/src/plugins/prep/script/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/priority/basic/Makefile.am b/src/plugins/priority/basic/Makefile.am index 06d049e1d2..f1eef8b06d 100644 --- a/src/plugins/priority/basic/Makefile.am +++ b/src/plugins/priority/basic/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/priority/multifactor/Makefile.am b/src/plugins/priority/multifactor/Makefile.am index c7e1f0ae0b..bbae101b0f 100644 --- a/src/plugins/priority/multifactor/Makefile.am +++ b/src/plugins/priority/multifactor/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/proctrack/cgroup/Makefile.am b/src/plugins/proctrack/cgroup/Makefile.am index 007b2d2040..2d02e886e0 100644 --- a/src/plugins/proctrack/cgroup/Makefile.am +++ b/src/plugins/proctrack/cgroup/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/proctrack/cray_aries/Makefile.am b/src/plugins/proctrack/cray_aries/Makefile.am index 7d744285c1..58ea7379fb 100644 --- a/src/plugins/proctrack/cray_aries/Makefile.am +++ b/src/plugins/proctrack/cray_aries/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = - -module -avoid-version --export-dynamic +PLUGIN_FLAGS = - -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(CRAY_JOB_CPPFLAGS) diff --git a/src/plugins/proctrack/linuxproc/Makefile.am b/src/plugins/proctrack/linuxproc/Makefile.am index 22ea4fd0de..2d6f8a9909 100644 --- a/src/plugins/proctrack/linuxproc/Makefile.am +++ b/src/plugins/proctrack/linuxproc/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/proctrack/pgid/Makefile.am b/src/plugins/proctrack/pgid/Makefile.am index 7faa7a2e12..f34fc65198 100644 --- a/src/plugins/proctrack/pgid/Makefile.am +++ b/src/plugins/proctrack/pgid/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/route/default/Makefile.am b/src/plugins/route/default/Makefile.am index 424620c585..9f8e6d6293 100644 --- a/src/plugins/route/default/Makefile.am +++ b/src/plugins/route/default/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/route/topology/Makefile.am b/src/plugins/route/topology/Makefile.am index c6fc5d3070..70144372f8 100644 --- a/src/plugins/route/topology/Makefile.am +++ b/src/plugins/route/topology/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/sched/backfill/Makefile.am b/src/plugins/sched/backfill/Makefile.am index 6a2b852865..ad1c7a1a58 100644 --- a/src/plugins/sched/backfill/Makefile.am +++ b/src/plugins/sched/backfill/Makefile.am @@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = foreign AM_CXXFLAGS = -fexceptions -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/sched/builtin/Makefile.am b/src/plugins/sched/builtin/Makefile.am index 0b6df5b153..3ddd5e4fd2 100644 --- a/src/plugins/sched/builtin/Makefile.am +++ b/src/plugins/sched/builtin/Makefile.am @@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = foreign AM_CXXFLAGS = -fexceptions -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/sched/hold/Makefile.am b/src/plugins/sched/hold/Makefile.am index 7f0e233438..e4744ffd98 100644 --- a/src/plugins/sched/hold/Makefile.am +++ b/src/plugins/sched/hold/Makefile.am @@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = foreign AM_CXXFLAGS = -fexceptions -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/select/cons_res/Makefile.am b/src/plugins/select/cons_res/Makefile.am index 5824bd7499..5f3a136e87 100644 --- a/src/plugins/select/cons_res/Makefile.am +++ b/src/plugins/select/cons_res/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/select/cons_tres/Makefile.am b/src/plugins/select/cons_tres/Makefile.am index 862ebf2169..c8ed83bc91 100644 --- a/src/plugins/select/cons_tres/Makefile.am +++ b/src/plugins/select/cons_tres/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/select/cray_aries/Makefile.am b/src/plugins/select/cray_aries/Makefile.am index 0ec87442c0..9c8dced43b 100644 --- a/src/plugins/select/cray_aries/Makefile.am +++ b/src/plugins/select/cray_aries/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common \ -I$(top_srcdir)/src/plugins/select/other $(CRAY_SELECT_CPPFLAGS) diff --git a/src/plugins/select/linear/Makefile.am b/src/plugins/select/linear/Makefile.am index f3ab7c9fdc..047b1ea38f 100644 --- a/src/plugins/select/linear/Makefile.am +++ b/src/plugins/select/linear/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/site_factor/none/Makefile.am b/src/plugins/site_factor/none/Makefile.am index db647f2de2..eccafd0890 100644 --- a/src/plugins/site_factor/none/Makefile.am +++ b/src/plugins/site_factor/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/slurmctld/nonstop/Makefile.am b/src/plugins/slurmctld/nonstop/Makefile.am index d5858cb0f8..755525d612 100644 --- a/src/plugins/slurmctld/nonstop/Makefile.am +++ b/src/plugins/slurmctld/nonstop/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(MUNGE_CPPFLAGS) diff --git a/src/plugins/switch/cray_aries/Makefile.am b/src/plugins/switch/cray_aries/Makefile.am index dd0f763a5f..06af7e4209 100644 --- a/src/plugins/switch/cray_aries/Makefile.am +++ b/src/plugins/switch/cray_aries/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic pkglib_LTLIBRARIES = switch_cray_aries.la diff --git a/src/plugins/switch/none/Makefile.am b/src/plugins/switch/none/Makefile.am index 36cb6ae32e..617b9a2289 100644 --- a/src/plugins/switch/none/Makefile.am +++ b/src/plugins/switch/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/task/affinity/Makefile.am b/src/plugins/task/affinity/Makefile.am index e0ef716c24..e007e49dcc 100644 --- a/src/plugins/task/affinity/Makefile.am +++ b/src/plugins/task/affinity/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/task/cgroup/Makefile.am b/src/plugins/task/cgroup/Makefile.am index 6b6a33684a..42630a5b94 100644 --- a/src/plugins/task/cgroup/Makefile.am +++ b/src/plugins/task/cgroup/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(HWLOC_CPPFLAGS) diff --git a/src/plugins/task/cray_aries/Makefile.am b/src/plugins/task/cray_aries/Makefile.am index bfb7589061..648d3671da 100644 --- a/src/plugins/task/cray_aries/Makefile.am +++ b/src/plugins/task/cray_aries/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(CRAY_TASK_CPPFLAGS) diff --git a/src/plugins/task/none/Makefile.am b/src/plugins/task/none/Makefile.am index 27908baada..92b04a4a6d 100644 --- a/src/plugins/task/none/Makefile.am +++ b/src/plugins/task/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/topology/3d_torus/Makefile.am b/src/plugins/topology/3d_torus/Makefile.am index f5140c71a2..5ba340fc05 100644 --- a/src/plugins/topology/3d_torus/Makefile.am +++ b/src/plugins/topology/3d_torus/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/topology/hypercube/Makefile.am b/src/plugins/topology/hypercube/Makefile.am index 21552ac5e1..fd55b9ca8c 100644 --- a/src/plugins/topology/hypercube/Makefile.am +++ b/src/plugins/topology/hypercube/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/topology/none/Makefile.am b/src/plugins/topology/none/Makefile.am index 25d43c73a4..de30a653c5 100644 --- a/src/plugins/topology/none/Makefile.am +++ b/src/plugins/topology/none/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/plugins/topology/tree/Makefile.am b/src/plugins/topology/tree/Makefile.am index 76885f4cce..b6ff7cb3fd 100644 --- a/src/plugins/topology/tree/Makefile.am +++ b/src/plugins/topology/tree/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common diff --git a/src/slurmctld/Makefile.am b/src/slurmctld/Makefile.am index 6fde12532d..054a9317ec 100644 --- a/src/slurmctld/Makefile.am +++ b/src/slurmctld/Makefile.am @@ -7,7 +7,7 @@ CLEANFILES = core.* AM_CPPFLAGS = -I$(top_srcdir) # noinst_LTLIBRARIES = libslurmctld.la -# libslurmctld_la_LDFLAGS = $(LIB_LDFLAGS) -module --export-dynamic +# libslurmctld_la_LDFLAGS = $(LIB_LDFLAGS) -module -export-dynamic # libslurmctld_la_SOURCES = slurmctld_SOURCES = \ acct_policy.c \ diff --git a/src/slurmrestd/plugins/auth/jwt/Makefile.am b/src/slurmrestd/plugins/auth/jwt/Makefile.am index 5afcf4d589..464ef10150 100644 --- a/src/slurmrestd/plugins/auth/jwt/Makefile.am +++ b/src/slurmrestd/plugins/auth/jwt/Makefile.am @@ -3,7 +3,7 @@ AUTOMAKE_OPTIONS = foreign CLEANFILES = *.bino -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(JSON_CPPFLAGS) diff --git a/src/slurmrestd/plugins/auth/local/Makefile.am b/src/slurmrestd/plugins/auth/local/Makefile.am index 9f2d78b6ec..f54a8f9834 100644 --- a/src/slurmrestd/plugins/auth/local/Makefile.am +++ b/src/slurmrestd/plugins/auth/local/Makefile.am @@ -3,7 +3,7 @@ AUTOMAKE_OPTIONS = foreign CLEANFILES = *.bino -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(JSON_CPPFLAGS) diff --git a/src/slurmrestd/plugins/openapi/dbv0.0.36/Makefile.am b/src/slurmrestd/plugins/openapi/dbv0.0.36/Makefile.am index a3d07971d2..9d04b48132 100644 --- a/src/slurmrestd/plugins/openapi/dbv0.0.36/Makefile.am +++ b/src/slurmrestd/plugins/openapi/dbv0.0.36/Makefile.am @@ -7,7 +7,7 @@ EXTRA_DIST = LICENSE-openapi.json REF = openapi.json -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/src/common $(JSON_CPPFLAGS) diff --git a/src/slurmrestd/plugins/openapi/v0.0.35/Makefile.am b/src/slurmrestd/plugins/openapi/v0.0.35/Makefile.am index 74a9686dfe..613c68c805 100644 --- a/src/slurmrestd/plugins/openapi/v0.0.35/Makefile.am +++ b/src/slurmrestd/plugins/openapi/v0.0.35/Makefile.am @@ -7,7 +7,7 @@ EXTRA_DIST = LICENSE-openapi.json REF = openapi.json -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(JSON_CPPFLAGS) diff --git a/src/slurmrestd/plugins/openapi/v0.0.36/Makefile.am b/src/slurmrestd/plugins/openapi/v0.0.36/Makefile.am index 23c0f49c80..f46f425bf5 100644 --- a/src/slurmrestd/plugins/openapi/v0.0.36/Makefile.am +++ b/src/slurmrestd/plugins/openapi/v0.0.36/Makefile.am @@ -7,7 +7,7 @@ EXTRA_DIST = LICENSE-openapi.json REF = openapi.json -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(JSON_CPPFLAGS) diff --git a/src/slurmrestd/plugins/openapi/v0.0.37/Makefile.am b/src/slurmrestd/plugins/openapi/v0.0.37/Makefile.am index 2fe681aae6..383d3e5f3d 100644 --- a/src/slurmrestd/plugins/openapi/v0.0.37/Makefile.am +++ b/src/slurmrestd/plugins/openapi/v0.0.37/Makefile.am @@ -7,7 +7,7 @@ EXTRA_DIST = LICENSE-openapi.json REF = openapi.json -PLUGIN_FLAGS = -module -avoid-version --export-dynamic +PLUGIN_FLAGS = -module -avoid-version -export-dynamic AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) -I$(top_srcdir)/src/common $(JSON_CPPFLAGS) diff --git a/src/srun/libsrun/Makefile.am b/src/srun/libsrun/Makefile.am index 910637ccf5..097554be0e 100644 --- a/src/srun/libsrun/Makefile.am +++ b/src/srun/libsrun/Makefile.am @@ -17,7 +17,7 @@ libsrun_la_SOURCES = \ opt.c opt.h \ srun_job.c srun_job.h libsrun_la_LIBADD = $(DL_LIBS) -libsrun_la_LDFLAGS = $(LIB_LDFLAGS) -module --export-dynamic \ +libsrun_la_LDFLAGS = $(LIB_LDFLAGS) -module -export-dynamic \ $(CRAY_JOB_LDFLAGS) force: