We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f1a0a44 + 8e19562 commit c61ffe6Copy full SHA for c61ffe6
1 file changed
Makefile.in
@@ -33,6 +33,7 @@ DESTDIR=
33
CC= @CC@
34
INSTALL= @INSTALL@
35
PYTHON= @PYTHON@
36
+MAILMAN_GROUP= @MAILMAN_GROUP@
37
38
DEFS= @DEFS@
39
@@ -90,6 +91,10 @@ subdirs: build/bin build/cron $(SUBDIRS)
90
91
install: doinstall update
92
93
doinstall: $(SUBDIRS)
94
+ @echo "Creating and configuring prefix directory $(DESTDIR)$(prefix)..."
95
+ @$(srcdir)/mkinstalldirs $(DESTDIR)$(prefix)
96
+ @chgrp $(MAILMAN_GROUP) $(DESTDIR)$(prefix)
97
+ @chmod 02775 $(DESTDIR)$(prefix)
98
@echo "Creating architecture independent directories..."
99
@for d in $(VAR_DIRS); \
100
do \
0 commit comments