[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
This commit is contained in:
Scott Wegner 2008-03-12 09:48:45 -05:00
parent 7a786333ff
commit a61407161d
2 changed files with 3 additions and 3 deletions

4
configure vendored
View File

@ -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; }

View File

@ -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])
;;