[Rt-commit] r5231 - rt/branches/3.5-TESTING

trs at bestpractical.com trs at bestpractical.com
Mon May 15 21:13:44 EDT 2006


Author: trs
Date: Mon May 15 21:13:44 2006
New Revision: 5231

Modified:
   rt/branches/3.5-TESTING/   (props changed)
   rt/branches/3.5-TESTING/configure.ac

Log:
 r12305 at zot:  tom | 2006-05-15 21:13:20 -0400
 Revert the group-finding fix as it doesn't work on all platforms


Modified: rt/branches/3.5-TESTING/configure.ac
==============================================================================
--- rt/branches/3.5-TESTING/configure.ac	(original)
+++ rt/branches/3.5-TESTING/configure.ac	Mon May 15 21:13:44 2006
@@ -202,7 +202,9 @@
 AC_SUBST(RTGROUP)
 
 dnl INSTALL AS ME
-my_group=$(id -gn)
+# XXX TODO: The command below to figure out the group brokenly relies on
+# output order (and "id -gn" doesn't work on all platforms).
+my_group=$(groups|cut -f1 -d' ')
 my_user=${USER:-$LOGNAME}
 AC_ARG_WITH(my-user-group,
             AC_HELP_STRING([--with-my-user-group],


More information about the Rt-commit mailing list