diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2009-10-09 20:12:06 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2009-10-09 20:12:06 (GMT) |
commit | 7f0eb8e04e6de4bde7123701cedf7fd769d6196a (patch) | |
tree | 3a1bf31fe8871af8f8c306db8719b18e47225850 /perform | |
parent | 492da787dd6f21a159c3dfbd74ecf44653177cee (diff) | |
download | hdf5-7f0eb8e04e6de4bde7123701cedf7fd769d6196a.zip hdf5-7f0eb8e04e6de4bde7123701cedf7fd769d6196a.tar.gz hdf5-7f0eb8e04e6de4bde7123701cedf7fd769d6196a.tar.bz2 |
[svn-r17627] Purpose:
Couple quick configure cleanups
Description:
- Made a few AM_LDFLAGS assignments a bit safer.
- Regenerated a couple Makefile.in's via bin/reconfigure to address
some typo-fixes that didn't propagate in my last check-in.
Tested:
- h5committest
- Also, I suspect this fix will address a failure on Sandia's clogin2
machine, but Albert currently has no password to gain access, so I have
only minimal logs of the failure and no way to test it there. I'll
just let the automated tests there determine if indeed I'm right.
Diffstat (limited to 'perform')
-rw-r--r-- | perform/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perform/Makefile.in b/perform/Makefile.in index ff5fa34..da941e3 100644 --- a/perform/Makefile.in +++ b/perform/Makefile.in @@ -405,8 +405,8 @@ INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/test -I$(top_srcdir)/tools/lib @BUILD_PARALLEL_CONDITIONAL_TRUE@TEST_PROG_PARA = h5perf perf # Add h5perf and h5perf_serial specific linker flags here -h5perf_LDFLAGS = $(LT_STATIC_EXEC) $(LD_FLAGS) -h5perf_serial_LDFLAGS = $(LT_STATIC_EXEC) $(LD_FLAGS) +h5perf_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) +h5perf_serial_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) # Some programs are not built or run by default, but can be built by hand or by # specifying --enable-build-all at configure time. |