summaryrefslogtreecommitdiff
path: root/m4/getcwd-path-max.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-03-05 09:05:08 +0000
committerJim Meyering <jim@meyering.net>2003-03-05 09:05:08 +0000
commite50251a361a0b7ebc12ce1bb1e714af331299003 (patch)
treef108e4e914131823c650a977d9eafebc5a11296d /m4/getcwd-path-max.m4
parent9e4307423e1986613cbc09085ca2e29a81b7570c (diff)
downloadcoreutils-e50251a361a0b7ebc12ce1bb1e714af331299003.tar.xz
more variable renaming: use gl_ prefix
Diffstat (limited to 'm4/getcwd-path-max.m4')
-rw-r--r--m4/getcwd-path-max.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/m4/getcwd-path-max.m4 b/m4/getcwd-path-max.m4
index e91fa64f5..302dbb060 100644
--- a/m4/getcwd-path-max.m4
+++ b/m4/getcwd-path-max.m4
@@ -12,7 +12,7 @@
AC_DEFUN([GL_FUNC_GETCWD_PATH_MAX],
[
AC_CACHE_CHECK([whether getcwd properly handles paths longer than PATH_MAX],
- utils_cv_func_getcwd_vs_path_max,
+ gl_cv_func_getcwd_vs_path_max,
[
# Arrange for deletion of the temporary directory this test creates.
ac_clean_files="$ac_clean_files confdir3"
@@ -112,11 +112,11 @@ main ()
#endif
}
]])],
- [utils_cv_func_getcwd_vs_path_max=yes],
- [utils_cv_func_getcwd_vs_path_max=no],
- [utils_cv_func_getcwd_vs_path_max=no])])
+ [gl_cv_func_getcwd_vs_path_max=yes],
+ [gl_cv_func_getcwd_vs_path_max=no],
+ [gl_cv_func_getcwd_vs_path_max=no])])
- if test $utils_cv_func_getcwd_vs_path_max = yes; then
+ if test $gl_cv_func_getcwd_vs_path_max = yes; then
AC_LIBOBJ(getcwd)
AC_DEFINE(getcwd, rpl_getcwd,
[Define to rpl_getcwd if the wrapper function should be used.])