diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-02 20:33:14 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-02 20:33:14 (GMT) |
commit | e611830fe102b855c6429e17567d023f4ec64c5f (patch) | |
tree | 7b8d276fe695eaf1e709c21c17e93b2214d645d0 | |
parent | 59f299b826bca122e94b4b325f0bccb03a2c3bd2 (diff) | |
download | hdf5-e611830fe102b855c6429e17567d023f4ec64c5f.zip hdf5-e611830fe102b855c6429e17567d023f4ec64c5f.tar.gz hdf5-e611830fe102b855c6429e17567d023f4ec64c5f.tar.bz2 |
[svn-r3749] Purpose:
Bug Fix
Description:
We shouldn't create Makefiles in the testpar/ directory unless we're
building this as parallel.
Solution:
Put flag in there specifying that we're doing this in Parallel and we
should build the Makefile in testpar/.
-rw-r--r-- | configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 27b2ea0..5f063ea 100644 --- a/configure.in +++ b/configure.in @@ -1552,6 +1552,12 @@ touch ./config/stamp1 saved_no_create=$no_create no_create=yes +PARALLEL_MAKE= + +if test -n "$TESTPARALLEL"; then + PARALLEL_MAKE="$TESTPARALLEL/Makefile" +fi + EXTRA_H4_MAKEFILES= if test -n "$H4TOH5"; then @@ -1574,7 +1580,7 @@ AC_OUTPUT(src/libhdf5.settings src/Makefile pablo/Makefile test/Makefile - testpar/Makefile + $PARALLEL_MAKE tools/Makefile tools/h5dump/Makefile tools/h5ls/Makefile |