blob: 5d60cc8aab3dc0f35d15895d25f24e719e9ab6f6 (
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
|
--- doc/Makefile.in.orig Fri Jun 18 01:19:00 2004
+++ doc/Makefile.in Fri Jan 27 07:03:15 2006
@@ -53,28 +53,9 @@
fi
install: install-mkdirs build
- @echo "ircd: installing example config files ($(CONFS))"
- @for i in $(CONFS); do \
- if test -f $(DESTDIR)$(confdir)/$$i; then \
- $(MV) $(DESTDIR)$(confdir)/$$i $(DESTDIR)$(confdir)/$$i.old; \
- fi; \
- $(INSTALL_DATA) $$i $(DESTDIR)$(confdir); \
- done
-
- @for i in $(DEFAULTCONFS); do \
- if test ! -f $(DESTDIR)$(confdir)/$$i; then \
- echo "ircd: creating config file ($$i)"; \
- ${TOUCH} $(DESTDIR)$(confdir)/$$i; \
- fi; \
- done
-
-@if test ! -f $(DESTDIR)$(confdir)/ircd.motd; then \
echo "ircd: installing motd file (ircd.motd)"; \
- $(INSTALL_DATA) ircd.motd $(DESTDIR)$(confdir); \
- fi
-
- -@if test -f $(DESTDIR)$(confdir)/links.txt; then \
- $(RM) $(DESTDIR)$(confdir)/links.txt; \
+ $(INSTALL_DATA) ircd.motd $(DESTDIR)$(confdir)/ircd.motd.sample; \
fi
@echo "ircd: installing manpage"
|