mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
74fff5d514
Changes: http://www.shrubbery.net/rancid/CHANGES Additional portlint fixes PR: 165974 Submitted by: ohauer Approved by: Mohacsi Janos <janos.mohacsi@bsd.hu> (maintainer) Feature safe: yes
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
--- ./etc/Makefile.in.orig 2011-11-17 22:10:11.000000000 +0100
|
|
+++ ./etc/Makefile.in 2012-04-09 23:03:03.000000000 +0200
|
|
@@ -423,26 +423,8 @@
|
|
|
|
|
|
install-data-local: all
|
|
- @if test "$(DO_CONF_INSTALL)" = "yes"; then \
|
|
- if test -f $(DESTDIR)$(sysconfdir)/rancid.conf ; then \
|
|
- echo ""; \
|
|
- echo "WARNING: *** $(DESTDIR)$(sysconfdir)/rancid.conf exists. See "; \
|
|
- echo " *** $(pkgdatadir)/rancid.conf.sample for new"; \
|
|
- echo " *** examples."; \
|
|
- echo ""; \
|
|
- else \
|
|
- $(INSTALL_DATA) rancid.conf.sample $(DESTDIR)$(sysconfdir)/rancid.conf; \
|
|
- fi; \
|
|
- if test -f $(DESTDIR)$(sysconfdir)/lg.conf ; then \
|
|
- echo ""; \
|
|
- echo "WARNING: *** $(DESTDIR)$(sysconfdir)/lg.conf exists. See "; \
|
|
- echo " *** $(pkgdatadir)/lg.conf.sample for new"; \
|
|
- echo " *** examples."; \
|
|
- echo ""; \
|
|
- else \
|
|
- $(INSTALL_DATA) lg.conf.sample $(DESTDIR)$(sysconfdir)/lg.conf; \
|
|
- fi; \
|
|
- fi
|
|
+ $(INSTALL_DATA) rancid.conf.sample $(DESTDIR)$(sysconfdir)
|
|
+ $(INSTALL_DATA) lg.conf.sample $(DESTDIR)$(sysconfdir)
|
|
|
|
lg.conf.sample: Makefile $(srcdir)/lg.conf.sample.in
|
|
rm -f lg.conf.sample lg.conf.sample.tmp; \
|