diff options
author | Jim Meyering <jim@meyering.net> | 2005-01-04 09:40:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-01-04 09:40:23 +0000 |
commit | 46bf568ec144565384b99d97bb4007c5ae92f9a7 (patch) | |
tree | c8ffc7cfc2158db4c658840876073169358c80f2 /m4 | |
parent | 00b81a876113ba4ceb84040a00826c33638a7c81 (diff) | |
download | coreutils-46bf568ec144565384b99d97bb4007c5ae92f9a7.tar.xz |
(gl_FUNC_CHOWN): When cross-compiling, assume that chown
is sane and DOES follow symlinks. Besides, testing 20 different
systems found no broken chown implementations.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/chown.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/chown.m4 b/m4/chown.m4 index 430bc8073..a93b3c575 100644 --- a/m4/chown.m4 +++ b/m4/chown.m4 @@ -1,4 +1,4 @@ -#serial 10 +#serial 11 # Determine whether we need the chown wrapper. chown should accept # arguments of -1 for uid and gid, and it should dereference symlinks. # If it doesn't, arrange to use the replacement function. @@ -57,7 +57,7 @@ AC_DEFUN([gl_FUNC_CHOWN_FOLLOWS_SYMLINK], ]])], [gl_cv_func_chown_follows_symlink=yes], [gl_cv_func_chown_follows_symlink=no], - [gl_cv_func_chown_follows_symlink=no] + [gl_cv_func_chown_follows_symlink=yes] ) ] ) |