From: JD Horelick Date: Sat, 4 Dec 2010 22:29:01 +0000 (-0500) Subject: Do not install ban .conf files (like kline.conf, rsv.conf, etc) as they aren't used... X-Git-Tag: shadowircd-6.3.0-RC1~38 X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/commitdiff_plain/b0e752b0f9572d4bdef62db949359a58a568d6f5 Do not install ban .conf files (like kline.conf, rsv.conf, etc) as they aren't used anymore. --- 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); \