summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorviega1998-06-14 00:50:36 +0000
committerviega1998-06-14 00:50:36 +0000
commitad49417e699d1b9235bc38b1378ec86cdfba40b5 (patch)
treedf284314de453b8992ed4d5913e9c52d0fca44ec
parent05cf09209ce15e0801379f8ab5566b43d3d3c9a6 (diff)
downloadmailman-ad49417e699d1b9235bc38b1378ec86cdfba40b5.tar.gz
mailman-ad49417e699d1b9235bc38b1378ec86cdfba40b5.tar.zst
mailman-ad49417e699d1b9235bc38b1378ec86cdfba40b5.zip
Modified to install the stuff in Cgi. It's probably not the right way
to do it, but I did want to at least install something that works (I.e., I fully expect Barry to say, "what a hack, I'm going to do it right!").
-rw-r--r--Mailman/Makefile.in12
-rw-r--r--modules/Makefile.in12
2 files changed, 22 insertions, 2 deletions
diff --git a/Mailman/Makefile.in b/Mailman/Makefile.in
index 2fde0b486..73690b63c 100644
--- a/Mailman/Makefile.in
+++ b/Mailman/Makefile.in
@@ -39,7 +39,7 @@ DEFS= @DEFS@
OPT= @OPT@
CFLAGS= $(OPT) $(DEFS)
PACKAGEDIR= $(prefix)/Mailman
-
+CGIDIR= $(PACKAGEDIR)/Cgi
SHELL= /bin/sh
MODULES= __init__.py aliases.py htmlformat.py maillist.py \
@@ -49,6 +49,11 @@ mm_mbox.py mm_message.py mm_security.py mm_utils.py \
mm_pending.py mm_crypt.py mm_gateway.py \
pipermail.py smtplib.py versions.py
+CGI_MODULES= __init__.py admin.py admindb.py archives.py \
+edithtml.py handle_opts.py listinfo.py options.py private.py \
+roster.py subscribe.py
+
+
# Modes for directories and executables created by the install
# process. Default to group-writable directories but
# user-only-writable for executables.
@@ -67,6 +72,11 @@ install:
do \
$(INSTALL) -m $(FILEMODE) $$f $(PACKAGEDIR); \
done
+ $(INSTALL) -d $(PACKAGEDIR)/Cgi
+ for f in $(CGI_MODULES); \
+ do \
+ $(INSTALL) -m $(FILEMODE) Cgi/$$f $(PACKAGEDIR)/Cgi; \
+ done
$(INSTALL) -m $(FILEMODE) mm_cfg.py $(PACKAGEDIR)/mm_cfg.py.dist
if test ! -f $(PACKAGEDIR)/mm_cfg.py; \
then \
diff --git a/modules/Makefile.in b/modules/Makefile.in
index 2fde0b486..73690b63c 100644
--- a/modules/Makefile.in
+++ b/modules/Makefile.in
@@ -39,7 +39,7 @@ DEFS= @DEFS@
OPT= @OPT@
CFLAGS= $(OPT) $(DEFS)
PACKAGEDIR= $(prefix)/Mailman
-
+CGIDIR= $(PACKAGEDIR)/Cgi
SHELL= /bin/sh
MODULES= __init__.py aliases.py htmlformat.py maillist.py \
@@ -49,6 +49,11 @@ mm_mbox.py mm_message.py mm_security.py mm_utils.py \
mm_pending.py mm_crypt.py mm_gateway.py \
pipermail.py smtplib.py versions.py
+CGI_MODULES= __init__.py admin.py admindb.py archives.py \
+edithtml.py handle_opts.py listinfo.py options.py private.py \
+roster.py subscribe.py
+
+
# Modes for directories and executables created by the install
# process. Default to group-writable directories but
# user-only-writable for executables.
@@ -67,6 +72,11 @@ install:
do \
$(INSTALL) -m $(FILEMODE) $$f $(PACKAGEDIR); \
done
+ $(INSTALL) -d $(PACKAGEDIR)/Cgi
+ for f in $(CGI_MODULES); \
+ do \
+ $(INSTALL) -m $(FILEMODE) Cgi/$$f $(PACKAGEDIR)/Cgi; \
+ done
$(INSTALL) -m $(FILEMODE) mm_cfg.py $(PACKAGEDIR)/mm_cfg.py.dist
if test ! -f $(PACKAGEDIR)/mm_cfg.py; \
then \