summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-04-18 23:33:29 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-04-18 23:33:29 +0000
commit9f79304eadbda0033e015767459adeb514ff3b21 (patch)
tree6c79e58e1eedcc9f7fe13e070bb34ece9bd13f34 /tests
parenta57516e20fe715b115b281d46d2370a952973342 (diff)
downloadcoreutils-9f79304eadbda0033e015767459adeb514ff3b21.tar.xz
(FETISH_GROUP): Renamed from COREUTILS_GROUP.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/chmod/setgid4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/chmod/setgid b/tests/chmod/setgid
index bd9c154fd..6b84976c1 100755
--- a/tests/chmod/setgid
+++ b/tests/chmod/setgid
@@ -32,11 +32,11 @@ mkdir d || framework_failure=1
chmod g+s d 2> /dev/null ||
{
- # This is required because on some systems (at least NetBSD 1.4.2A),
+ # This is required because on some systems (at least NetBSD 1.4.2A),
# it may happen that when you create a directory, its group isn't one
# to which you belong. When that happens, the above chmod fails. So
# here, upon failure, we try to set the group, then rerun the chmod command.
- group=${FETISH_GROUP-`(id -ng || /usr/xpg4/bin/id -ng) 2>/dev/null`}
+ group=${COREUTILS_GROUP-`(id -ng || /usr/xpg4/bin/id -ng) 2>/dev/null`}
if test "$group"; then
chgrp "$group" d || framework_failure=1
chmod g+s d || framework_failure=1