diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-20 20:21:30 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-20 20:21:30 (GMT) |
commit | f5dad4f23f7920ee3a0b2cc75851f9a05c7b8629 (patch) | |
tree | 85085a165f426729f89490052fd493a15e7a48de /tools/Makefile.in | |
parent | 687d3d3bc345d65cc141369059e5029e46543b7b (diff) | |
download | hdf5-f5dad4f23f7920ee3a0b2cc75851f9a05c7b8629.zip hdf5-f5dad4f23f7920ee3a0b2cc75851f9a05c7b8629.tar.gz hdf5-f5dad4f23f7920ee3a0b2cc75851f9a05c7b8629.tar.bz2 |
[svn-r2981] Purpose:
Bug fix
Description:
If TESTH5TOH4 or TESTH4TOH5 wasn't set, then it would mess up the
testing process by adding a ``#'' to the for statement (since
there was a line-continuation in the definition of the macro).
Solution:
Placed the macro expansions all on one line so that there's no
junk characters picked up by accident.
Platforms tested:
OSF1 (Gondolin)
Diffstat (limited to 'tools/Makefile.in')
-rw-r--r-- | tools/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 84184df..b5507e5 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -15,8 +15,7 @@ CPPFLAGS=-I. -I$(srcdir) -I../src -I$(top_srcdir)/src @CPPFLAGS@ ## Test programs and scripts. TEST_PROGS=talign -TEST_SCRIPTS=$(srcdir)/testh5dump.sh $(srcdir)/testh5ls.sh \ - @TESTH5TOH4@ @TESTH4TOH5@ +TEST_SCRIPTS=$(srcdir)/testh5dump.sh $(srcdir)/testh5ls.sh @TESTH5TOH4@ @TESTH4TOH5@ ## These are our main targets: library and tools. We link this library ## statically because some systems can only link executables to a single |