From a61407161dbf11bfeb5f53404d81f195adab0eb7 Mon Sep 17 00:00:00 2001 From: Scott Wegner Date: Wed, 12 Mar 2008 09:48:45 -0500 Subject: [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 --- configure | 4 ++-- configure.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 838501c..d8a944b 100755 --- a/configure +++ b/configure @@ -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]) ;; -- cgit v0.12