diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-03-12 14:48:45 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-03-12 14:48:45 (GMT) |
commit | a61407161dbf11bfeb5f53404d81f195adab0eb7 (patch) | |
tree | f48607394029e22ac7cb66e049b7db460fe25570 | |
parent | 7a786333ff2ee53a66bc052f811598730c12c8f2 (diff) | |
download | hdf5-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
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 14547 2008-02-11 20:09:52Z epourmal . +# From configure.in Id: configure.in 14607 2008-02-19 14:32:19Z swegner . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for HDF5 1.9.0. # @@ -45712,7 +45712,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: checking for global timezone variable" >&5 echo $ECHO_N "checking for global timezone variable... $ECHO_C" >&6; } -case "'uname'" in +case "`uname`" in CYGWIN*) { echo "$as_me:$LINENO: result: disabled in CYGWIN" >&5 echo "${ECHO_T}disabled in CYGWIN" >&6; } 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]) ;; |