summaryrefslogtreecommitdiffstats
path: root/c++/examples
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2003-07-11 22:46:06 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2003-07-11 22:46:06 (GMT)
commitdf4d03a81f5157d08163bcebe7d2a0d2b468968b (patch)
tree44247177c8819a5495a30253c2571a48cf175c3a /c++/examples
parent344eb1c83c19e552e281735782ec29d8b68d52df (diff)
downloadhdf5-df4d03a81f5157d08163bcebe7d2a0d2b468968b.zip
hdf5-df4d03a81f5157d08163bcebe7d2a0d2b468968b.tar.gz
hdf5-df4d03a81f5157d08163bcebe7d2a0d2b468968b.tar.bz2
[svn-r7213] Purpose:
Bug fix Description: Elena and I suspected that the order of *.cpp files in TEST_SRC might have caused the failure of a C++ examples in the daily test. Solution: Reordered the files from: compound.cpp h5group.cpp create.cpp readdata.cpp chunks.cpp \ extend_ds.cpp writedata.cpp to: create.cpp readdata.cpp writedata.cpp compound.cpp extend_ds.cpp \ chunks.cpp h5group.cpp Platforms tested: Tested on verbena and the examples still worked (without -tlocal.) I'll be testing on other platforms later tonight, I'm trying to catch the daily test! Misc. update:
Diffstat (limited to 'c++/examples')
-rw-r--r--c++/examples/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index 43bb0a5..7711432 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -32,8 +32,8 @@ hdf5_builddir=$(top_builddir)/src
## List all source files here. The list of object files will be
## created by replacing the `.cpp' with a `.lo'. This list is necessary
## for building automatic dependencies.
-TEST_SRC=compound.cpp h5group.cpp create.cpp readdata.cpp chunks.cpp \
- extend_ds.cpp writedata.cpp
+TEST_SRC=create.cpp readdata.cpp writedata.cpp compound.cpp extend_ds.cpp \
+ chunks.cpp h5group.cpp
TEST_OBJ=$(TEST_SRC:.cpp=.lo)
H5_FILES=Attributes.h5 SDScompound.h5 Select.h5 SDSextendible.h5 Group.h5 SDS.h5