mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 11:04:51 -04:00
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
$NetBSD: patch-aa,v 1.6 2015/06/10 16:24:44 fhajny Exp $
|
|
|
|
Handle CONF_FILES.
|
|
|
|
Installation destination for example config file.
|
|
--- pdns/Makefile.in.orig 2015-03-02 13:17:27.000000000 +0000
|
|
+++ pdns/Makefile.in
|
|
@@ -1632,18 +1632,18 @@ clean-libtool:
|
|
-rm -rf .libs _libs
|
|
install-sysconfDATA: $(sysconf_DATA)
|
|
@$(NORMAL_INSTALL)
|
|
- @list='$(sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \
|
|
+ @list='$(sysconf_DATA)'; test -n "$(EGDIR)" || list=; \
|
|
if test -n "$$list"; then \
|
|
- echo " $(MKDIR_P) '$(DESTDIR)$(sysconfdir)'"; \
|
|
- $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" || exit 1; \
|
|
+ echo " $(MKDIR_P) '$(DESTDIR)$(EGDIR)'"; \
|
|
+ $(MKDIR_P) "$(DESTDIR)$(EGDIR)" || exit 1; \
|
|
fi; \
|
|
for p in $$list; do \
|
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
echo "$$d$$p"; \
|
|
done | $(am__base_list) | \
|
|
while read files; do \
|
|
- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sysconfdir)'"; \
|
|
- $(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)" || exit $$?; \
|
|
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(EGDIR)'"; \
|
|
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(EGDIR)" || exit $$?; \
|
|
done
|
|
|
|
uninstall-sysconfDATA:
|