diff options
| author | bwarsaw | 1998-08-03 15:17:39 +0000 |
|---|---|---|
| committer | bwarsaw | 1998-08-03 15:17:39 +0000 |
| commit | 7ddc2fe7e18971eeff85ce242ca50ea8fcf3b70a (patch) | |
| tree | a0e8d151e62a6e06de026562312fa296bc347ec7 /src | |
| parent | d44a75b6ed511456a0aab5a885b0c5831afc6907 (diff) | |
| download | mailman-7ddc2fe7e18971eeff85ce242ca50ea8fcf3b70a.tar.gz mailman-7ddc2fe7e18971eeff85ce242ca50ea8fcf3b70a.tar.zst mailman-7ddc2fe7e18971eeff85ce242ca50ea8fcf3b70a.zip | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 6 |
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 \ |
