summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-09-15 19:59:33 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-09-15 19:59:33 (GMT)
commit2f725eeb402f9ef6bc2e1cb277754ead56ecadf5 (patch)
tree5ecd9850e2df51e6c7bf8b6d49d1e3d974114358 /configure
parent2a4c631e2c3def7fb643bc3c8cbe8d5449f2a658 (diff)
downloadhdf5-2f725eeb402f9ef6bc2e1cb277754ead56ecadf5.zip
hdf5-2f725eeb402f9ef6bc2e1cb277754ead56ecadf5.tar.gz
hdf5-2f725eeb402f9ef6bc2e1cb277754ead56ecadf5.tar.bz2
[svn-r2565] Purpose:
Stupid error in one of the tests. Description: The string tested needed to be in quotes. Platforms: Linux, Solaris
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure20
1 files changed, 10 insertions, 10 deletions
diff --git a/configure b/configure
index 8d2a2fb..739bb85 100755
--- a/configure
+++ b/configure
@@ -1032,7 +1032,7 @@ fi
if test "X$HDF_FORTRAN" = "Xyes"; then
echo "yes"
- if test -z $config_dirs; then
+ if test -z "$config_dirs"; then
config_dirs=fortran
else
config_dirs=${config_dirs} fortran
@@ -1052,7 +1052,7 @@ fi
if test "X$HDF_CXX" = "Xyes"; then
echo "yes"
- if test -z $config_dirs; then
+ if test -z "$config_dirs"; then
config_dirs=c++
else
config_dirs=${config_dirs} c++
@@ -7527,17 +7527,17 @@ else
fi
-case $withval in
- yes)
- echo "$ac_t""yes" 1>&6
- cat >> confdefs.h <<\EOF
+case "$withval" in
+ yes)
+ echo "$ac_t""yes" 1>&6
+ cat >> confdefs.h <<\EOF
#define HAVE_STREAM 1
EOF
- ;;
- *)
- echo "$ac_t""not configured" 1>&6
- ;;
+ ;;
+ *)
+ echo "$ac_t""not configured" 1>&6
+ ;;
esac