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/h5dump/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/h5dump/Makefile.am')
-rw-r--r-- | tools/test/h5dump/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/h5dump/Makefile.am b/tools/test/h5dump/Makefile.am index be21119..a7a2bcb 100644 --- a/tools/test/h5dump/Makefile.am +++ b/tools/test/h5dump/Makefile.am @@ -41,7 +41,7 @@ if HAVE_SHARED_CONDITIONAL # Build it as shared library if configure is enabled for shared library. noinst_LTLIBRARIES=libdynlibdump.la libdynlibdump_la_SOURCES=dynlib_dump.c - libdynlibdump_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath /nowhere + libdynlibdump_la_LDFLAGS=$(AM_LDFLAGS) -avoid-version -module -shared -export-dynamic -rpath /nowhere endif # Temporary files. *.h5 are generated by h5dumpgentest. They should |