diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-06-06 07:33:37 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-06-06 07:33:37 (GMT) |
commit | 1585cc57c08692b2ffaf3358f96e6d7e3239d5eb (patch) | |
tree | eb257a591453921c58d41471331f1c11d6be5fe3 /configure | |
parent | 9cf66905ff55467ee241f1e6797ecd982b312d13 (diff) | |
download | hdf5-1585cc57c08692b2ffaf3358f96e6d7e3239d5eb.zip hdf5-1585cc57c08692b2ffaf3358f96e6d7e3239d5eb.tar.gz hdf5-1585cc57c08692b2ffaf3358f96e6d7e3239d5eb.tar.bz2 |
[svn-r3966] Purpose:
bug fix
Description:
The last reported problem that the parallel example program
in examples could not be compiled, could not be duplicated
again. I guessed maybe Rushad mistook the compile warning
messages as error messages. Just a guess.
Furthermore, the changed examples/Makefile.in and configure.in,
did not work for the parallel case. The examples/ph5example.c
was never included for compiling.
Solution:
Removed the fix in configure.in, put ph5exmple directly back
in the examples/Makefile.in but put it in a variable for
easier future maintenance. Also, easier to identify the
parallel examples too.
Platforms tested:
Eirene, both serial and parallel modes.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -9868,12 +9868,10 @@ touch ./config/stamp1 saved_no_create=$no_create no_create=yes -PARALLEL_MAKE="" - PARALLEL_EXAMPLES_SRC="" +PARALLEL_MAKE= if test -n "$TESTPARALLEL"; then PARALLEL_MAKE="$TESTPARALLEL/Makefile" - PARALLEL_EXAMPLES_SRC="examples/ph5example.c" fi EXTRA_H4_MAKEFILES= @@ -10112,7 +10110,6 @@ s%@COMMENCE@%%g s%@CONCLUDE@%%g s%@SEARCH@%$SEARCH%g s%@SETX@%$SETX%g -s%@PARALLEL_EXAMPLES_SRC@%$PARALLEL_EXAMPLES_SRC%g CEOF EOF |