diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-05-10 21:43:34 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-05-10 21:43:34 (GMT) |
commit | ce7c9f7b08114a3bd1e557f71b82eef27b223f96 (patch) | |
tree | ec583a8a7f538e2aaf3e59793990dd6dbfca3ae3 /configure | |
parent | e1a266b72e46e3eb352b4751533585afb3aadf80 (diff) | |
download | hdf5-ce7c9f7b08114a3bd1e557f71b82eef27b223f96.zip hdf5-ce7c9f7b08114a3bd1e557f71b82eef27b223f96.tar.gz hdf5-ce7c9f7b08114a3bd1e557f71b82eef27b223f96.tar.bz2 |
[svn-r3906] Purpose:
Bug Fix
Description:
A parallel example was added to the examples/ subdirectory. This was
being built whether --enable-parallel was defined or not. This was
causing some havoc with certain setups.
Solution:
Added logic to make it so that the parallel examples are made only if
--enable-parallel is specified.
Platforms tested:
Linux
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -9827,10 +9827,12 @@ touch ./config/stamp1 saved_no_create=$no_create no_create=yes -PARALLEL_MAKE= +PARALLEL_MAKE="" + PARALLEL_EXAMPLES_SRC="" if test -n "$TESTPARALLEL"; then PARALLEL_MAKE="$TESTPARALLEL/Makefile" + PARALLEL_EXAMPLES_SRC="examples/ph5example.c" fi EXTRA_H4_MAKEFILES= @@ -10068,6 +10070,7 @@ s%@COMMENCE@%%g s%@CONCLUDE@%%g s%@SEARCH@%$SEARCH%g s%@SETX@%$SETX%g +s%@PARALLEL_EXAMPLES_SRC@%$PARALLEL_EXAMPLES_SRC%g CEOF EOF |