diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-06-30 16:59:27 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-06-30 16:59:27 (GMT) |
commit | 3e297166b8af3cd4cb7910705b781b03cc895f69 (patch) | |
tree | d49020fa3d776e8f2d5daaf4cfa460591521b280 | |
parent | 6c41212cc497302b91c0376eeee850d9eb8ff531 (diff) | |
download | hdf5-3e297166b8af3cd4cb7910705b781b03cc895f69.zip hdf5-3e297166b8af3cd4cb7910705b781b03cc895f69.tar.gz hdf5-3e297166b8af3cd4cb7910705b781b03cc895f69.tar.bz2 |
[svn-r7124]
Purpose:
Bug Fix
Description:
LIBTOOLS macro was being used but not defined.
Solution:
Removed the LIBTOOLS macro as it wasn't necessary
Platforms tested:
Modi4 (small fix)
Misc. update:
-rw-r--r-- | tools/h5diff/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in index bfef2c2..1c543b5 100644 --- a/tools/h5diff/Makefile.in +++ b/tools/h5diff/Makefile.in @@ -64,13 +64,13 @@ check test _test: $(PROGS) ## How to build the programs...They all depend on the hdf5 library and ## the tools library compiled in this directory. ## -$(PROGS): $(LIBTOOLS) $(LIBHDF5) +$(PROGS): $(LIBHDF5) h5diff: h5diff.lo h5trav.lo - @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5diff.lo h5trav.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5diff.lo h5trav.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) h5difftst: h5difftst.lo - @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5difftst.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5difftst.lo $(LIBHDF5) $(LDFLAGS) $(LIBS) @CONCLUDE@ |