From 678d6d29762e42345b0b893e875522b2aaccc6a2 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Wed, 5 Apr 2000 23:39:17 +0000 Subject: Require that $prefix be at least 02775, i.e. group writable. This is a change from the previous requirement that $prefix be 02755, but this change is for consistency with check_perms. --- configure | 6 +++--- configure.in | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure b/configure index ff7f31566..baea9d46b 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.43 +# From configure.in Revision: 1.44 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -1175,9 +1175,9 @@ else: problems.append("Directory must be owned by group mailman: " + prefix) if (mode & S_ISGID) <> S_ISGID: problems.append("Set-gid bit must be set for directory: " +prefix) - perms = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH + perms = S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH if (mode & perms) <> perms: - problems.append("Permissions should be at least 02755: " + prefix) + problems.append("Permissions should be at least 02775: " + prefix) if not problems: msg = "okay\n" else: diff --git a/configure.in b/configure.in index 8963690eb..9c31f1e1d 100644 --- a/configure.in +++ b/configure.in @@ -15,7 +15,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl Process this file with autoconf to produce a configure script. -AC_REVISION($Revision: 2148 $) +AC_REVISION($Revision: 2197 $) AC_PREREQ(2.0) AC_INIT(src/alias-wrapper.c) @@ -221,9 +221,9 @@ else: problems.append("Directory must be owned by group mailman: " + prefix) if (mode & S_ISGID) <> S_ISGID: problems.append("Set-gid bit must be set for directory: " +prefix) - perms = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH + perms = S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH if (mode & perms) <> perms: - problems.append("Permissions should be at least 02755: " + prefix) + problems.append("Permissions should be at least 02775: " + prefix) if not problems: msg = "okay\n" else: -- cgit v1.3.1