mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-25 17:00:45 +08:00
[svn-r2923] Purpose:
Bug fix Description: Wasn't picking up the c++ directory. Solution: The string needed to be in quotes. Platforms tested: Linux
This commit is contained in:
parent
825e9ff8ff
commit
c22d6272bc
8
configure
vendored
8
configure
vendored
@ -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"
|
||||
|
@ -146,9 +146,9 @@ AC_ARG_ENABLE(fortran,
|
||||
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"
|
||||
@ -165,9 +165,9 @@ AC_ARG_ENABLE(cxx,
|
||||
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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user