From df4d03a81f5157d08163bcebe7d2a0d2b468968b Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Fri, 11 Jul 2003 17:46:06 -0500 Subject: [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: --- c++/examples/Makefile.in | 4 ++-- 1 file 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 -- cgit v0.12