diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2012-10-01 23:41:55 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2012-10-01 23:41:55 (GMT) |
commit | fa935398b30ac04aee48cfefdd083a5a80a93c29 (patch) | |
tree | dd0c75386c04d593b6d6fe159f158ffe46d3e242 /perform/Makefile.am | |
parent | d4657ce265090740d62552877bb1533549df2996 (diff) | |
download | hdf5-fa935398b30ac04aee48cfefdd083a5a80a93c29.zip hdf5-fa935398b30ac04aee48cfefdd083a5a80a93c29.tar.gz hdf5-fa935398b30ac04aee48cfefdd083a5a80a93c29.tar.bz2 |
[svn-r22848] Bug fix: HDFFV-8156
benchpar.c is compiled when configure --enable-build-all --enable-paralllel.
But it failed to compile. It is decided to retire or move it to example.
I removed it from the PARA_BUILD_ALL list so that --enable-build-all will
not fail. The program file still need to be moved.
Tested: Koala using --enable-build-all --enable-parallel.
--in parallel mode.This line, and those below, will be ignored--
M perform/Makefile.in
M perform/Makefile.am
Diffstat (limited to 'perform/Makefile.am')
-rw-r--r-- | perform/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perform/Makefile.am b/perform/Makefile.am index 5d0e11d..988ec63 100644 --- a/perform/Makefile.am +++ b/perform/Makefile.am @@ -37,8 +37,9 @@ h5perf_serial_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS) # Some programs are not built or run by default, but can be built by hand or by # specifying --enable-build-all at configure time. # Also, some of these programs should only be built in parallel. +# Currently there is no such program. if BUILD_PARALLEL_CONDITIONAL - PARA_BUILD_ALL=benchpar + PARA_BUILD_ALL= endif if BUILD_ALL_CONDITIONAL BUILD_ALL_PROGS=$(PARA_BUILD_ALL) |