From b0e752b0f9572d4bdef62db949359a58a568d6f5 Mon Sep 17 00:00:00 2001 From: JD Horelick Date: Sat, 4 Dec 2010 17:29:01 -0500 Subject: [PATCH] Do not install ban .conf files (like kline.conf, rsv.conf, etc) as they aren't used anymore. --- doc/Makefile.in | 8 -------- 1 file changed, 8 deletions(-) diff --git a/doc/Makefile.in b/doc/Makefile.in index 2925055..5d48353 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -31,7 +31,6 @@ mandir = @mandir@/man8 MANPAGES = ircd.8 CONFS = example.conf reference.conf -DEFAULTCONFS = kline.conf dline.conf xline.conf resv.conf SSL_LIBS = @SSL_LIBS@ SSL_INCLUDES = @SSL_INCLUDES@ @@ -63,13 +62,6 @@ install: install-mkdirs build $(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); \