diff options
author | Wayne Davison <wayned@samba.org> | 2006-02-04 18:41:47 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-02-04 18:41:47 +0000 |
commit | 00f00f846b20b4d6bc0eee2668b0c50fd4531a48 (patch) | |
tree | 170f5d96df2ed6578971328969da4285a74169fa /runtests.sh | |
parent | 998113fedf200f94ee3e361deed00a9bd6e7d2a7 (diff) | |
download | rsync-00f00f846b20b4d6bc0eee2668b0c50fd4531a48.tar.gz rsync-00f00f846b20b4d6bc0eee2668b0c50fd4531a48.tar.bz2 rsync-00f00f846b20b4d6bc0eee2668b0c50fd4531a48.zip |
Ignore setfacl unless it tells us that it supports the -k option.
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtests.sh b/runtests.sh index 9f0ce85a..f6d86f7f 100755 --- a/runtests.sh +++ b/runtests.sh @@ -161,8 +161,8 @@ else echo " preserve_scratch=no" fi -# We'll use setfacl if it's around. -if test -f /usr/bin/setfacl || setfacl --help >/dev/null 2>&1 ; then +# We'll use setfacl if it's around and it supports the -k option. +if setfacl --help 2>/dev/null | grep ' -k,' >/dev/null; then setfacl=setfacl else setfacl=true |