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/h5diff/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/h5diff/Makefile.am')
-rw-r--r-- | tools/test/h5diff/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/h5diff/Makefile.am b/tools/test/h5diff/Makefile.am index 4d43a2a..a2ce9c4 100644 --- a/tools/test/h5diff/Makefile.am +++ b/tools/test/h5diff/Makefile.am @@ -52,7 +52,7 @@ if HAVE_SHARED_CONDITIONAL # Build it as shared library if configure is enabled for shared library. noinst_LTLIBRARIES=libdynlibdiff.la libdynlibdiff_la_SOURCES=dynlib_diff.c - libdynlibdiff_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere + libdynlibdiff_la_LDFLAGS=$(AM_LDFLAGS) -avoid-version -module -shared -export-dynamic -rpath /nowhere endif # Temporary files. *.h5 are generated by h5diff. They should |