[Rt-commit] rt branch, 4.4/configure-libs-group-fix, created. rt-4.4.2-154-gee4d6d602
? sunnavy
sunnavy at bestpractical.com
Thu Apr 19 14:59:17 EDT 2018
The branch, 4.4/configure-libs-group-fix has been created
at ee4d6d6020f9c6f56b9cc1db0764db456694ce2a (commit)
- Log -----------------------------------------------------------------
commit dc1b2b79c241d06d25741894f1d692b68eb91e64
Author: sunnavy <sunnavy at bestpractical.com>
Date: Fri Apr 20 02:40:37 2018 +0800
Fix configure's --libs-group help string
As the name applies, it's for libraries.
diff --git a/configure.ac b/configure.ac
index d7685d80d..35965499f 100755
--- a/configure.ac
+++ b/configure.ac
@@ -111,7 +111,7 @@ AC_SUBST(LIBS_OWNER)
dnl LIBS_GROUP
AC_ARG_WITH(libs-group,
AC_HELP_STRING([--with-libs-group=GROUP],
- [group that will own RT binaries (default bin)]),
+ [group that will own RT libraries (default bin)]),
LIBS_GROUP=$withval,
LIBS_GROUP=bin)
AC_SUBST(LIBS_GROUP)
commit ee4d6d6020f9c6f56b9cc1db0764db456694ce2a
Author: sunnavy <sunnavy at bestpractical.com>
Date: Fri Apr 20 02:53:03 2018 +0800
Default --libs-group value from "bin" to "root"
According to LSB: The bin User ID/Group ID is included for compatibility
with legacy applications. New applications should no longer use the bin
User ID/Group ID.
diff --git a/configure.ac b/configure.ac
index 35965499f..09cbca33d 100755
--- a/configure.ac
+++ b/configure.ac
@@ -111,9 +111,9 @@ AC_SUBST(LIBS_OWNER)
dnl LIBS_GROUP
AC_ARG_WITH(libs-group,
AC_HELP_STRING([--with-libs-group=GROUP],
- [group that will own RT libraries (default bin)]),
+ [group that will own RT libraries (default root)]),
LIBS_GROUP=$withval,
- LIBS_GROUP=bin)
+ LIBS_GROUP=root)
AC_SUBST(LIBS_GROUP)
dnl DB_TYPE
-----------------------------------------------------------------------
More information about the rt-commit
mailing list