From c61ba345f25c053377b42c49d84a535b0b1af393 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 3 Jan 2005 23:01:19 +0000 Subject: [PATCH] Decided that a cross-compling configure should default the chown-follows-symlinks check to "yes". --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index a9c1f1a6..09a3bd19 100644 --- a/configure.in +++ b/configure.in @@ -476,7 +476,7 @@ AC_CACHE_CHECK([whether chown() dereferences symlinks],rsync_cv_chown_follows_sy if (chown(dangling_symlink, getuid(), getgid()) < 0 && errno == ENOENT) exit(0); exit(1); }], - rsync_cv_chown_follows_symlink=yes,rsync_cv_chown_follows_symlink=no,rsync_cv_chown_follows_symlink=no)]) + rsync_cv_chown_follows_symlink=yes,rsync_cv_chown_follows_symlink=no,rsync_cv_chown_follows_symlink=yes)]) if test $rsync_cv_chown_follows_symlink = no; then AC_DEFINE(CHOWN_MODIFIES_SYMLINK, 1, [Define if chown modifies symlinks.]) fi -- 2.34.1