summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorScott Wegner <swegner@hdfgroup.org>2008-03-12 14:48:45 (GMT)
committerScott Wegner <swegner@hdfgroup.org>2008-03-12 14:48:45 (GMT)
commita61407161dbf11bfeb5f53404d81f195adab0eb7 (patch)
treef48607394029e22ac7cb66e049b7db460fe25570 /configure.in
parent7a786333ff2ee53a66bc052f811598730c12c8f2 (diff)
downloadhdf5-a61407161dbf11bfeb5f53404d81f195adab0eb7.zip
hdf5-a61407161dbf11bfeb5f53404d81f195adab0eb7.tar.gz
hdf5-a61407161dbf11bfeb5f53404d81f195adab0eb7.tar.bz2
[svn-r14723] Purpose: Fix typo in our configure CYGWIN patch
Description: Previously, we created a patch for Cygwin to skip checking for the timezone variable. We made this change in both the trunk and hdf5_1_8 branch. However, in the branch version, we seemed to have used wrong quotes in our check ('uname' rather than `uname`). This corrects the typo Tested: Cygwin on WinXP
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 002be2b..44f055f 100644
--- a/configure.in
+++ b/configure.in
@@ -1729,7 +1729,7 @@ AC_MSG_RESULT([no]))
dnl Check whether the global variable `timezone' is defined.
AC_MSG_CHECKING([for global timezone variable])
-case "'uname'" in
+case "`uname`" in
CYGWIN*)
AC_MSG_RESULT([disabled in CYGWIN])
;;