summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2012-05-01 17:12:20 +0200
committerBruno Haible <bruno@clisp.org>2012-05-01 17:12:20 +0200
commit2ceef7f74014b0599b048b4027e3056e6ef06d5f (patch)
tree57599a4335d5c6b3fbd39996255c6c1d74fb86dd
parent5194f0b8ed4dc1f4ef62099a3652b541202109d3 (diff)
downloadgnulib-2ceef7f74014b0599b048b4027e3056e6ef06d5f.tar.gz
getcwd: Fix misindentation.
* m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Fix indentation.
-rw-r--r--ChangeLog5
-rw-r--r--m4/getcwd.m419
2 files changed, 14 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 1e384b3ffa..58632faee8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-01 Bruno Haible <bruno@clisp.org>
+
+ getcwd: Fix misindentation.
+ * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Fix indentation.
+
2012-04-29 Paul Eggert <eggert@cs.ucla.edu>
exclude: process exclude and include directives in order
diff --git a/m4/getcwd.m4 b/m4/getcwd.m4
index ccb1f47bd3..50b96c666c 100644
--- a/m4/getcwd.m4
+++ b/m4/getcwd.m4
@@ -6,7 +6,7 @@
# with or without modifications, as long as this notice is preserved.
# Written by Paul Eggert.
-# serial 11
+# serial 12
AC_DEFUN([gl_FUNC_GETCWD_NULL],
[
@@ -45,15 +45,14 @@ AC_DEFUN([gl_FUNC_GETCWD_NULL],
]])],
[gl_cv_func_getcwd_null=yes],
[gl_cv_func_getcwd_null=no],
- [[
- case "$host_os" in
- # Guess yes on glibc systems.
- *-gnu*) gl_cv_func_getcwd_null="guessing yes";;
- # Guess yes on Cygwin.
- cygwin*) gl_cv_func_getcwd_null="guessing yes";;
- # If we don't know, assume the worst.
- *) gl_cv_func_getcwd_null="guessing no";;
- esac
+ [[case "$host_os" in
+ # Guess yes on glibc systems.
+ *-gnu*) gl_cv_func_getcwd_null="guessing yes";;
+ # Guess yes on Cygwin.
+ cygwin*) gl_cv_func_getcwd_null="guessing yes";;
+ # If we don't know, assume the worst.
+ *) gl_cv_func_getcwd_null="guessing no";;
+ esac
]])])
])