blob: f5c70a4d9d684da1123f13d42c6951f8ce129648 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
$FreeBSD$
--- etc/Makefile.in.orig Fri Feb 6 16:56:50 2004
+++ etc/Makefile.in Wed May 5 16:40:00 2004
@@ -347,26 +347,8 @@
install-data-local: all
- @if test "$(DO_CONF_INSTALL)" = "yes"; then \
- if test -f $(sysconfdir)/rancid.conf ; then \
- echo ""; \
- echo "WARNING: *** $(sysconfdir)/rancid.conf exists. See "; \
- echo " *** $(pkgdatadir)/rancid.conf.sample for new"; \
- echo " *** examples."; \
- echo ""; \
- else \
- $(INSTALL_DATA) rancid.conf.sample $(sysconfdir)/rancid.conf; \
- fi; \
- if test -f $(sysconfdir)/lg.conf ; then \
- echo ""; \
- echo "WARNING: *** $(sysconfdir)/lg.conf exists. See "; \
- echo " *** $(pkgdatadir)/lg.conf.sample for new"; \
- echo " *** examples."; \
- echo ""; \
- else \
- $(INSTALL_DATA) lg.conf.sample $(sysconfdir)/lg.conf; \
- fi; \
- fi
+ $(INSTALL_DATA) rancid.conf.sample $(sysconfdir)/
+ $(INSTALL_DATA) lg.conf.sample $(sysconfdir)/
lg.conf.sample: Makefile $(srcdir)/lg.conf.sample.in
rm -f lg.conf.sample lg.conf.sample.tmp; \
|