diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 17:13:39 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 17:13:39 (GMT) |
commit | c22d6272bc855a217f9b7bb610e7cae21af1ff19 (patch) | |
tree | e304e299a5f89c3328d3328b55740cee0d879642 /configure | |
parent | 825e9ff8ff4eee0373c8a22804d528d6c73d793c (diff) | |
download | hdf5-c22d6272bc855a217f9b7bb610e7cae21af1ff19.zip hdf5-c22d6272bc855a217f9b7bb610e7cae21af1ff19.tar.gz hdf5-c22d6272bc855a217f9b7bb610e7cae21af1ff19.tar.bz2 |
[svn-r2923] Purpose:
Bug fix
Description:
Wasn't picking up the c++ directory.
Solution:
The string needed to be in quotes.
Platforms tested:
Linux
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1053,9 +1053,9 @@ fi if test "X$HDF_FORTRAN" = "Xyes"; then echo "yes" if test -z "$config_dirs"; then - config_dirs=fortran + config_dirs="fortran" else - config_dirs=${config_dirs} fortran + config_dirs="${config_dirs} fortran" fi else echo "no" @@ -1073,9 +1073,9 @@ fi if test "X$HDF_CXX" = "Xyes"; then echo "yes" if test -z "$config_dirs"; then - config_dirs=c++ + config_dirs="c++" else - config_dirs=${config_dirs} c++ + config_dirs="${config_dirs} c++" fi else echo "no" |