diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-18 23:32:12 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-18 23:32:12 +0000 |
commit | bf9a432a163928185d4fb79a647cddd2a0b67507 (patch) | |
tree | 3114d589503ccafe0ac1e9af6505ff0e3b947ec3 | |
parent | 973039d61fcb745e17d9966bdc5ba98c94a405bd (diff) | |
download | coreutils-bf9a432a163928185d4fb79a647cddd2a0b67507.tar.xz |
(gl_MACROS): Use gl_ or coreutils_ rather than fetish_ for prefixes.
-rw-r--r-- | m4/jm-macros.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index 732d21374..35716e0da 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -1,4 +1,4 @@ -#serial 83 -*- autoconf -*- +#serial 84 -*- autoconf -*- dnl Misc type-related macros for coreutils. @@ -52,7 +52,7 @@ AC_DEFUN([gl_MACROS], AC_REQUIRE([gl_FUNC_DIRFD]) AC_REQUIRE([AC_FUNC_ACL]) AC_REQUIRE([gl_FUNC_LCHOWN]) - AC_REQUIRE([fetish_FUNC_RMDIR_NOTEMPTY]) + AC_REQUIRE([gl_FUNC_RMDIR_NOTEMPTY]) AC_REQUIRE([gl_FUNC_CHOWN]) AC_REQUIRE([AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK]) AC_REQUIRE([AC_FUNC_STRERROR_R]) @@ -132,13 +132,13 @@ AC_DEFUN([gl_MACROS], AC_REQUIRE([GL_FUNC_READDIR]) # for dd.c and shred.c - fetish_saved_libs=$LIBS + coreutils_saved_libs=$LIBS AC_SEARCH_LIBS([fdatasync], [rt posix4], [test "$ac_cv_search_fdatasync" = "none required" || LIB_FDATASYNC=$ac_cv_search_fdatasync]) AC_SUBST([LIB_FDATASYNC]) AC_CHECK_FUNCS(fdatasync) - LIBS=$fetish_saved_libs + LIBS=$coreutils_saved_libs # See if linking `seq' requires -lm. # It does on nearly every system. The single exception (so far) is |