]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(FETISH_GROUP): Renamed from COREUTILS_GROUP.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 18 Apr 2005 23:33:29 +0000 (23:33 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 18 Apr 2005 23:33:29 +0000 (23:33 +0000)
tests/chmod/setgid

index bd9c154fd073567a2140c3b369c13bee035f4f32..6b84976c1630d3ca00703df8ac4c6bd335888611 100755 (executable)
@@ -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