]> sourceware.org Git - lvm2.git/commitdiff
configure.in: don't set default file owner and group
authorfabbione <fabbione>
Wed, 14 Oct 2009 04:10:41 +0000 (04:10 +0000)
committerfabbione <fabbione>
Wed, 14 Oct 2009 04:10:41 +0000 (04:10 +0000)
Per discussion on lvm-devel mailing list and part of debian patch set,
don't set defaults for owner and group, since nobody seems to use them, and
still allow override.

WHATS_NEW
configure
configure.in

index 5f06333a11cc9d67f12473f5e0cd2dfcd8aba4a5..6ff56b9cc0cb06b4c476696fa5dc894dc9682aaf 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.54 -
 =====================================
+  Set default owner and group to null.
   Add dmeventd.static to the build.
   Disable realtime support code by default.
   Make clvmd return 0 on success rather than 1.
index eedc60cd14a7a9a4134ee80044fcb66198d92c08..7da2d3ced47c2790ebba921009d91b474bfc249e 100755 (executable)
--- a/configure
+++ b/configure
@@ -1531,8 +1531,8 @@ Optional Features:
 Optional Packages:
   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
-  --with-user=USER        Set the owner of installed files [USER=root]
-  --with-group=GROUP      Set the group owner of installed files [GROUP=root]
+  --with-user=USER        Set the owner of installed files [USER=]
+  --with-group=GROUP      Set the group owner of installed files [GROUP=]
   --with-device-uid=UID   Set the owner used for new device nodes [UID=0]
   --with-device-gid=UID   Set the group used for new device nodes [GID=0]
   --with-device-mode=MODE Set the mode used for new device nodes [MODE=0600]
@@ -9078,7 +9078,7 @@ $as_echo "$STATIC_LINK" >&6; }
 ################################################################################
 { $as_echo "$as_me:$LINENO: checking file owner" >&5
 $as_echo_n "checking file owner... " >&6; }
-OWNER="root"
+OWNER=""
 
 
 # Check whether --with-user was given.
@@ -9096,7 +9096,7 @@ fi
 ################################################################################
 { $as_echo "$as_me:$LINENO: checking group owner" >&5
 $as_echo_n "checking group owner... " >&6; }
-GROUP="root"
+GROUP=""
 
 # Check whether --with-group was given.
 if test "${with_group+set}" = set; then
index fb99c9f5d70d50003c2511fa68566fdb870eee29..834fd6eea0072918ea21e49bdc6f02f46ce4fbe9 100644 (file)
@@ -144,10 +144,10 @@ AC_PREFIX_DEFAULT(/usr)
 ################################################################################
 dnl -- Setup the ownership of the files
 AC_MSG_CHECKING(file owner)
-OWNER="root"
+OWNER=""
 
 AC_ARG_WITH(user,
-  [  --with-user=USER        Set the owner of installed files [[USER=root]] ],
+  [  --with-user=USER        Set the owner of installed files [[USER=]] ],
   [ OWNER="$withval" ])
 AC_MSG_RESULT($OWNER)
 
@@ -158,9 +158,9 @@ fi
 ################################################################################
 dnl -- Setup the group ownership of the files
 AC_MSG_CHECKING(group owner)
-GROUP="root"
+GROUP=""
 AC_ARG_WITH(group,
-  [  --with-group=GROUP      Set the group owner of installed files [[GROUP=root]] ],
+  [  --with-group=GROUP      Set the group owner of installed files [[GROUP=]] ],
   [ GROUP="$withval" ])
 AC_MSG_RESULT($GROUP)
 
This page took 0.060129 seconds and 5 git commands to generate.