[Rt-commit] r2257 - rt/branches/3.4-RELEASE

jesse at bestpractical.com jesse at bestpractical.com
Thu Feb 24 16:50:52 EST 2005


Author: jesse
Date: Thu Feb 24 16:50:52 2005
New Revision: 2257

Modified:
   rt/branches/3.4-RELEASE/   (props changed)
   rt/branches/3.4-RELEASE/configure.ac
Log:
 r5942 at hualien:  jesse | 2005-02-24 16:31:48 -0500
     * Have the configure script default to the web group for the RT group if no rt group exists or is specified


Modified: rt/branches/3.4-RELEASE/configure.ac
==============================================================================
--- rt/branches/3.4-RELEASE/configure.ac	(original)
+++ rt/branches/3.4-RELEASE/configure.ac	Thu Feb 24 16:50:52 2005
@@ -71,14 +71,6 @@
    done
   ])
 
-dnl RTGROUP
-AC_ARG_WITH(rt-group,
-	    AC_HELP_STRING([--with-rt-group=GROUP],
-	    		   [group to own all files (default: rt)]),
-            RTGROUP=$withval,
-            ACRT_GROUP_GUESS([rt3 rt],[RTGROUP], [rt]))
-AC_SUBST(RTGROUP)
-
 dnl BIN_OWNER
 AC_ARG_WITH(bin-owner,
 	    AC_HELP_STRING([--with-bin-owner=OWNER],
@@ -200,6 +192,14 @@
             ACRT_GROUP_GUESS([www www-data apache httpd nogroup nobody],[WEB_GROUP], [www]))
 AC_SUBST(WEB_GROUP)
 
+dnl RTGROUP
+AC_ARG_WITH(rt-group,
+	    AC_HELP_STRING([--with-rt-group=GROUP],
+	    		   [group to own all files (default: rt)]),
+            RTGROUP=$withval,
+            ACRT_GROUP_GUESS([rt3 rt $WEB_GROUP],[RTGROUP], [rt]))
+AC_SUBST(RTGROUP)
+
 dnl INSTALL AS ME
 my_group=$(groups|cut -f1 -d' ')
 AC_ARG_WITH(my-user-group,


More information about the Rt-commit mailing list