diff options
| author | bwarsaw | 2000-04-05 23:39:17 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-04-05 23:39:17 +0000 |
| commit | 678d6d29762e42345b0b893e875522b2aaccc6a2 (patch) | |
| tree | 73f61f2967494aa498dbc92fdd747aca166790e8 | |
| parent | 5a6cc2e9842046116ffff7bb2f8fcaeb6c925b56 (diff) | |
| download | mailman-678d6d29762e42345b0b893e875522b2aaccc6a2.tar.gz mailman-678d6d29762e42345b0b893e875522b2aaccc6a2.tar.zst mailman-678d6d29762e42345b0b893e875522b2aaccc6a2.zip | |
| -rwxr-xr-x | configure | 6 | ||||
| -rw-r--r-- | configure.in | 6 |
2 files changed, 6 insertions, 6 deletions
@@ -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: |
