summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-09-07 23:21:26 +0000
committerbwarsaw2001-09-07 23:21:26 +0000
commitebf27ad97dbf4a5efee64bcbe2f0aac6825f0945 (patch)
treeb6296ab71f8295908cb24b332c41c1002376dfcc
parente6d7be6c917a2e7d8029fa071d1bf9b08baf5a58 (diff)
downloadmailman-ebf27ad97dbf4a5efee64bcbe2f0aac6825f0945.tar.gz
mailman-ebf27ad97dbf4a5efee64bcbe2f0aac6825f0945.tar.zst
mailman-ebf27ad97dbf4a5efee64bcbe2f0aac6825f0945.zip
Ben Gertzfield's patch to hardcode the path to the python executable
into the script's #! line -- based on --with-python settings, without losing CVS revision history. Install from the build directory.
-rw-r--r--cron/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/cron/Makefile.in b/cron/Makefile.in
index 5cf5301f5..9d90164ea 100644
--- a/cron/Makefile.in
+++ b/cron/Makefile.in
@@ -44,6 +44,8 @@ PROGRAMS= checkdbs mailpasswds senddigests gate_news \
nightly_gzip bumpdigests
FILES= crontab.in
+BUILDDIR= ../build/cron
+
# Modes for directories and executables created by the install
# process. Default to group-writable directories but
# user-only-writable for executables.
@@ -62,7 +64,7 @@ install:
done
for f in $(PROGRAMS); \
do \
- $(INSTALL) -m $(EXEMODE) $$f $(CRONDIR); \
+ $(INSTALL) -m $(EXEMODE) $(BUILDDIR)/$$f $(CRONDIR); \
done
finish: