summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 363aed1b5..1e488a325 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -101,12 +101,14 @@ install: all
do \
exe=$(CGIDIR)/$$f$(CGIEXT); \
$(INSTALL_PROGRAM) $$f $$exe; \
- chmod g+s $$exe; \
+ chown mailman $$exe; \
+ chmod ug+s $$exe; \
done
for f in $(MAIL_PROGS); \
do \
$(INSTALL_PROGRAM) $$f $(MAILDIR); \
- chmod g+s $(MAILDIR)/$$f; \
+ chown mailman $(MAILDIR)/$$f; \
+ chmod ug+s $(MAILDIR)/$$f; \
done
# @for f in $(ALIAS_PROGS); \
# do \