summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbwarsaw1998-08-03 15:17:39 +0000
committerbwarsaw1998-08-03 15:17:39 +0000
commit7ddc2fe7e18971eeff85ce242ca50ea8fcf3b70a (patch)
treea0e8d151e62a6e06de026562312fa296bc347ec7 /src
parentd44a75b6ed511456a0aab5a885b0c5831afc6907 (diff)
downloadmailman-7ddc2fe7e18971eeff85ce242ca50ea8fcf3b70a.tar.gz
mailman-7ddc2fe7e18971eeff85ce242ca50ea8fcf3b70a.tar.zst
mailman-7ddc2fe7e18971eeff85ce242ca50ea8fcf3b70a.zip
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 0931c4ee9..551d115b8 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -46,6 +46,7 @@ CGI_GID= @CGI_GID@
OPT= @OPT@
CFLAGS= $(OPT) $(DEFS)
CGIDIR= $(exec_prefix)/cgi-bin
+CGIEXT= @CGIEXT@
MAILDIR= $(exec_prefix)/mail
SHELL= /bin/sh
@@ -99,8 +100,9 @@ common.o: $(srcdir)/common.c $(srcdir)/common.h
install: all
for f in $(CGI_PROGS); \
do \
- $(INSTALL_PROGRAM) $$f $(CGIDIR); \
- chmod g+s $(CGIDIR)/$$f; \
+ exe=$(CGIDIR)/$$f$(CGIEXT); \
+ $(INSTALL_PROGRAM) $$f $$exe; \
+ chmod g+s $$exe; \
done
for f in $(MAIL_PROGS); \
do \