From: Jim Meyering Date: Wed, 5 Mar 2003 09:05:08 +0000 (+0000) Subject: more variable renaming: use gl_ prefix X-Git-Tag: v4.5.9~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e50251a361a0b7ebc12ce1bb1e714af331299003;p=thirdparty%2Fcoreutils.git more variable renaming: use gl_ prefix --- diff --git a/m4/getcwd-path-max.m4 b/m4/getcwd-path-max.m4 index e91fa64f5f..302dbb060b 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.])