diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2010-05-14 20:29:57 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2010-05-14 20:29:57 (GMT) |
commit | 88de0e02f0aaa7f1b0d6d6f193c7f49c7b7cfc54 (patch) | |
tree | ebbd93050a7b18808c40e088667d24b37f7f9f07 /tools/h5jam | |
parent | ed4885a4852259db08b923eb12cec42cb24cd5c2 (diff) | |
download | hdf5-88de0e02f0aaa7f1b0d6d6f193c7f49c7b7cfc54.zip hdf5-88de0e02f0aaa7f1b0d6d6f193c7f49c7b7cfc54.tar.gz hdf5-88de0e02f0aaa7f1b0d6d6f193c7f49c7b7cfc54.tar.bz2 |
[svn-r18808] Purpose:
Fixed file cleanup during make distclean / make check.
Description:
The h5jam Makefile and the h5importtestutil.sh script both included cleanup
steps that removed "*.txt" from the directory. This resulted in the new
CMake specific configuration file, CMakeLists.txt, getting blown away by
make distclean (for h5jam) and make check (for h5import).
I've removed the *.txt from the h5jam Makefile as the directory looks to be
getting cleaned appropriately without it, and I've modified the h5import
script h5importtestutil.sh to point to the specific .txt files to clean.
Tested:
jam
Diffstat (limited to 'tools/h5jam')
-rw-r--r-- | tools/h5jam/Makefile.am | 2 | ||||
-rw-r--r-- | tools/h5jam/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5jam/Makefile.am b/tools/h5jam/Makefile.am index 2f9bc00..c6ccebf 100644 --- a/tools/h5jam/Makefile.am +++ b/tools/h5jam/Makefile.am @@ -39,7 +39,7 @@ LDADD=$(LIBH5TOOLS) $(LIBHDF5) # Temporary files. *.h5 are generated by jamgentest. They should # copied to the testfiles/ directory if update is required. -CHECK_CLEANFILES+=*.h5 *.txt +CHECK_CLEANFILES+=*.h5 DISTCLEANFILES=testh5jam.sh include $(top_srcdir)/config/conclude.am diff --git a/tools/h5jam/Makefile.in b/tools/h5jam/Makefile.in index fdce1d1..bf5219a 100644 --- a/tools/h5jam/Makefile.in +++ b/tools/h5jam/Makefile.in @@ -373,7 +373,7 @@ TRACE = perl $(top_srcdir)/bin/trace # Temporary files. *.h5 are generated by jamgentest. They should # copied to the testfiles/ directory if update is required. -CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.h5 *.txt +CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.h5 # Include src and tools/lib directories INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/tools/lib |