summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-10-02 10:09:14 +0000
committerJim Meyering <jim@meyering.net>2005-10-02 10:09:14 +0000
commit1cf46dda932ac4e88c5f9dca517ce24c0d683669 (patch)
treeba19bc68bed2baa0c45f0931c9cf5f53112b08e2 /m4
parente7d6dd7451bd8916e52fbd7673c690673e50823b (diff)
downloadcoreutils-1cf46dda932ac4e88c5f9dca517ce24c0d683669.tar.xz
(gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
against `yes', rather than just testing for nonempty.
Diffstat (limited to 'm4')
-rw-r--r--m4/chdir-long.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/chdir-long.m4 b/m4/chdir-long.m4
index 9e9e35f98..0f22e382c 100644
--- a/m4/chdir-long.m4
+++ b/m4/chdir-long.m4
@@ -1,4 +1,4 @@
-#serial 5
+#serial 6
# Use Gnulib's robust chdir function.
# It can handle arbitrarily long directory names, which means
@@ -27,7 +27,7 @@ have_path_max_definition
gl_have_path_max_definition=yes,
gl_have_path_max_definition=no)])
- if test $gl_have_path_max_definition; then
+ if test $gl_have_path_max_definition = yes; then
AC_LIBOBJ([chdir-long])
gl_PREREQ_CHDIR_LONG
fi