diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-08-30 23:42:39 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-08-30 23:42:39 (GMT) |
commit | 66af6dce17787f70e7bded57fdc63b1006ade754 (patch) | |
tree | eb9ecc21bd4c265448324f9e192efac02fd841d8 /tools/h5jam | |
parent | 70ddbda208079d6597e453b510f9bfa9320cf0bf (diff) | |
download | hdf5-66af6dce17787f70e7bded57fdc63b1006ade754.zip hdf5-66af6dce17787f70e7bded57fdc63b1006ade754.tar.gz hdf5-66af6dce17787f70e7bded57fdc63b1006ade754.tar.bz2 |
[svn-r11319] Purpose:
Bug fixes
Description:
This checkin fixes an occasional error on kelgia on sol during distclean.
It also causes test scripts to depend properly on the programs they're
supposed to be testing.
Solution:
The kelgia bug was due to some files being cleaned by automake and manually.
Removed the manual cleaning in src/Makefile.am.
Test script dependencies now need to be specified manually, since the
makefile can't guess what they test from their name. Currently all test
scripts in a given directory have a single list of dependencies--this was
easy and seems to be sufficient.
These dependencies are listed in the SCRIPT_DEPEND variable in the Makefile.am.
Platforms tested:
heping, mir, modi4, sol
Misc. update:
Diffstat (limited to 'tools/h5jam')
-rw-r--r-- | tools/h5jam/Makefile.am | 1 | ||||
-rw-r--r-- | tools/h5jam/Makefile.in | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/h5jam/Makefile.am b/tools/h5jam/Makefile.am index a6bbfbb..d29ffd0 100644 --- a/tools/h5jam/Makefile.am +++ b/tools/h5jam/Makefile.am @@ -26,6 +26,7 @@ check_PROGRAMS=tellub h5jamgentest getub TEST_SCRIPT=testh5jam.sh check_SCRIPTS=$(TEST_SCRIPT) +SCRIPT_DEPEND=h5jam$(EXEEXT) h5unjam$(EXEEXT) # Link against the main HDF5 library and tools library LDADD=$(LIBH5TOOLS) $(LIBHDF5) diff --git a/tools/h5jam/Makefile.in b/tools/h5jam/Makefile.in index e79995d..9f27f6e 100644 --- a/tools/h5jam/Makefile.in +++ b/tools/h5jam/Makefile.in @@ -327,6 +327,7 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.h5 *.txt INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/tools/lib TEST_SCRIPT = testh5jam.sh check_SCRIPTS = $(TEST_SCRIPT) +SCRIPT_DEPEND = h5jam$(EXEEXT) h5unjam$(EXEEXT) # Link against the main HDF5 library and tools library LDADD = $(LIBH5TOOLS) $(LIBHDF5) @@ -766,7 +767,7 @@ $(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: tname=`basename $(@:.chkexe_=)`;\ log=`basename $(@:.chkexe_=.chklog)`; \ echo "============================"; \ - if $(top_srcdir)/bin/newer `basename $(@:.chkexe_=.chkexe)` $(@:.chkexe_=); then \ + if $(top_srcdir)/bin/newer `basename $(@:.chkexe_=.chkexe)` $(SCRIPT_DEPEND); then \ echo "No need to test $${tname} again."; \ else \ echo "============================" > $${log}; \ |