summaryrefslogtreecommitdiff
path: root/mail/nmh/patches/patch-ca
diff options
context:
space:
mode:
Diffstat (limited to 'mail/nmh/patches/patch-ca')
-rw-r--r--mail/nmh/patches/patch-ca16
1 files changed, 8 insertions, 8 deletions
diff --git a/mail/nmh/patches/patch-ca b/mail/nmh/patches/patch-ca
index 85a9e203f72..d10d3bccd1a 100644
--- a/mail/nmh/patches/patch-ca
+++ b/mail/nmh/patches/patch-ca
@@ -1,10 +1,10 @@
-$NetBSD: patch-ca,v 1.2 2000/01/18 15:50:33 agc Exp $
+$NetBSD: patch-ca,v 1.3 2000/03/02 00:23:15 hubertf Exp $
Use ${INSTALL_SCRIPT} to install scripts
Install configuration files as <conf-file>.dist
---- etc/Makefile.in.orig Fri Oct 2 23:38:38 1998
-+++ etc/Makefile.in Thu Mar 4 01:41:05 1999
+--- etc/Makefile.in.orig Thu Jan 6 22:30:07 2000
++++ etc/Makefile.in Thu Mar 2 00:46:18 2000
@@ -21,6 +21,7 @@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
@@ -13,24 +13,24 @@ Install configuration files as <conf-file>.dist
# Path to search for programs to handle MIME
# content. Used to create mhn.defaults
-@@ -79,16 +80,16 @@
+@@ -80,16 +81,16 @@
$(INSTALL_DATA) $(srcdir)/$$file $(etcdir)/$$file; \
done
for file in $(GEN_FILES); do \
- if [ -f $(etcdir)/$$file ]; then \
- mv $(etcdir)/$$file $(etcdir)/$$file.old; \
+ if [ -f $(etcdir)/$$file.dist ]; then \
-+ mv $(etcdir)/$$file.dist $(etcdir)/$$file.dist.old; \
++ mv $(etcdir)/$$file.dist $(etcdir)/$$file.old; \
fi; \
- $(INSTALL_DATA) $$file $(etcdir)/$$file; \
+ $(INSTALL_DATA) $$file $(etcdir)/$$file.dist; \
done
install-scripts:
- $(top_srcdir)/mkinstalldirs $(libdir)
+ $(top_srcdir)/mkinstalldirs $(bindir)
for script in $(SCRIPTS); do \
-- $(INSTALL_PROGRAM) $(srcdir)/$$script $(libdir)/$$script; \
-+ $(INSTALL_SCRIPT) $(srcdir)/$$script $(libdir)/$$script; \
+- $(INSTALL_PROGRAM) $(srcdir)/$$script $(bindir)/$$script; \
++ $(INSTALL_SCRIPT) $(srcdir)/$$script $(bindir)/$$script; \
done
uninstall: uninstall-files uninstall-scripts