summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-11-13 05:14:01 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-11-13 05:14:01 (GMT)
commit3a5e15819163e6e7c3de72a9ed8517ff200b02a7 (patch)
tree8ea893e9ca30492f2695ea4f99d40c216d6b196b /test
parentd4a0e3d293596dcd0412c7cc02f18addf44d03d5 (diff)
downloadhdf5-3a5e15819163e6e7c3de72a9ed8517ff200b02a7.zip
hdf5-3a5e15819163e6e7c3de72a9ed8517ff200b02a7.tar.gz
hdf5-3a5e15819163e6e7c3de72a9ed8517ff200b02a7.tar.bz2
Fixed the problems with LDFLAGS and AM_LDFLAGS in filter plugins.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 4f192ac..efdc1ca 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -110,10 +110,10 @@ if HAVE_SHARED_CONDITIONAL
libfilter_plugin2_dsets_la_SOURCES=filter_plugin2_dsets.c
libfilter_plugin3_dsets_la_SOURCES=filter_plugin3_dsets.c
libfilter_plugin4_groups_la_SOURCES=filter_plugin4_groups.c
- libfilter_plugin1_dsets_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
- libfilter_plugin2_dsets_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
- libfilter_plugin3_dsets_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
- libfilter_plugin4_groups_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere
+ libfilter_plugin1_dsets_la_LDFLAGS=$(AM_LDFLAGS) -avoid-version -module -shared -export-dynamic -rpath /nowhere
+ libfilter_plugin2_dsets_la_LDFLAGS=$(AM_LDFLAGS) -avoid-version -module -shared -export-dynamic -rpath /nowhere
+ libfilter_plugin3_dsets_la_LDFLAGS=$(AM_LDFLAGS) -avoid-version -module -shared -export-dynamic -rpath /nowhere
+ libfilter_plugin4_groups_la_LDFLAGS=$(AM_LDFLAGS) -avoid-version -module -shared -export-dynamic -rpath /nowhere
else
# The libh5test library provides common support code for the tests.
noinst_LTLIBRARIES=libh5test.la