2000-12-31 17:49:23 +08:00
|
|
|
# -*- sh -*-
|
|
|
|
# Disable the current test if the working directory seems to have
|
|
|
|
# the setgid bit set.
|
|
|
|
|
|
|
|
# This test should be run in the temporary directory that ends
|
|
|
|
# up being removed via the trap commands.
|
|
|
|
|
|
|
|
cwd_is_setgid=no
|
|
|
|
|
|
|
|
setgid_tmpdir=setgid-$$
|
|
|
|
(umask 77; mkdir $setgid_tmpdir)
|
|
|
|
p=`ls -ld $setgid_tmpdir|sed 's/ .*//'`
|
|
|
|
rmdir $setgid_tmpdir
|
2002-06-17 15:06:29 +08:00
|
|
|
case $p in
|
|
|
|
drwx------);;
|
|
|
|
drwxr-xr-x);; # Windows98 + DJGPP 2.03 + fileutils-4.1 does this.
|
|
|
|
*) cwd_is_setgid=yes;;
|
|
|
|
esac
|
2000-12-31 17:49:23 +08:00
|
|
|
if test $cwd_is_setgid = yes; then
|
|
|
|
cat <<EOF >&2
|
|
|
|
$0: Since it looks like you're running this test in a directory with
|
|
|
|
the setgid bit set, we're skipping this test.
|
|
|
|
EOF
|
2004-06-23 23:07:00 +08:00
|
|
|
(exit 77); exit 77
|
2000-12-31 17:49:23 +08:00
|
|
|
fi
|