diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-13 05:14:01 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-11-13 05:14:01 (GMT) |
commit | 3a5e15819163e6e7c3de72a9ed8517ff200b02a7 (patch) | |
tree | 8ea893e9ca30492f2695ea4f99d40c216d6b196b /tools/test/h5repack/Makefile.am | |
parent | d4a0e3d293596dcd0412c7cc02f18addf44d03d5 (diff) | |
download | hdf5-3a5e15819163e6e7c3de72a9ed8517ff200b02a7.zip hdf5-3a5e15819163e6e7c3de72a9ed8517ff200b02a7.tar.gz hdf5-3a5e15819163e6e7c3de72a9ed8517ff200b02a7.tar.bz2 |
Fixed the problems with LDFLAGS and AM_LDFLAGS in filter plugins.
Diffstat (limited to 'tools/test/h5repack/Makefile.am')
-rw-r--r-- | tools/test/h5repack/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test/h5repack/Makefile.am b/tools/test/h5repack/Makefile.am index fbe88bd..ce7cad4 100644 --- a/tools/test/h5repack/Makefile.am +++ b/tools/test/h5repack/Makefile.am @@ -48,8 +48,8 @@ if HAVE_SHARED_CONDITIONAL noinst_LTLIBRARIES=libdynlibadd.la libdynlibvers.la libdynlibadd_la_SOURCES=dynlib_rpk.c libdynlibvers_la_SOURCES=dynlib_vrpk.c - libdynlibadd_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere - libdynlibvers_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere + libdynlibadd_la_LDFLAGS=$(AM_LDFLAGS) -avoid-version -module -shared -export-dynamic -rpath /nowhere + libdynlibvers_la_LDFLAGS=$(AM_LDFLAGS) -avoid-version -module -shared -export-dynamic -rpath /nowhere endif |