From 9e3ab7e5d2494ca4dda3b3b2e9984eb067abb649 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Sat, 19 Apr 2003 21:10:15 -0500 Subject: [PATCH] [svn-r6718] Purpose: bug fix Description: The fphdf5.o and similar files are not included in the make clean target. So, if the same directory is used again for a different build, the left behind file could cause a problem (e.g., if the second build is for a different binary format.) Solution: Added fphdf5.c to the TEST_SRC list which indirect form the clean target list. Platforms tested: Did not run h5committest tests because they don't verify this failure. I tested the fix in modi4 pp to verify all files are cleaned. Misc. update: --- testpar/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testpar/Makefile.in b/testpar/Makefile.in index 15cf10999f..867c8b6fdf 100644 --- a/testpar/Makefile.in +++ b/testpar/Makefile.in @@ -41,7 +41,7 @@ DISTCLEAN=go Makefile testph5.sh ## Test source files TEST_PHDF5_SRC=testphdf5.c t_dset.c t_file.c t_mdset.c t_ph5basic.c TEST_PHDF5_OBJ=$(TEST_PHDF5_SRC:.c=.lo) -TEST_SRC=t_mpi.c $(TEST_PHDF5_SRC) +TEST_SRC=t_mpi.c t_fphdf5.c $(TEST_PHDF5_SRC) TEST_OBJ=$(TEST_SRC:.c=.lo) TEST_HDR=testphdf5.h