blob: 91753bb0da6e3d47943e6c2c44d35eb788f5aa22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$NetBSD: patch-etc_Makefile,v 1.4 2021/02/16 13:12:39 adam Exp $
Install config file examples properly.
--- etc/Makefile.orig 2020-08-26 04:30:03.000000000 +0000
+++ etc/Makefile
@@ -3,9 +3,9 @@ top_builddir = ..
include ../config.mk
install:
- $(MKINSTALLDIRS) $(sysconfdir)/$(SQLRELAY).conf.d
- $(CP) sqlrelay.xsd $(sysconfdir)/$(SQLRELAY).xsd
- $(CHMOD) 644 $(sysconfdir)/$(SQLRELAY).xsd
+ $(MKINSTALLDIRS) $(EXAMPLEDIR)/$(SQLRELAY).conf.d
+ $(CP) sqlrelay.xsd $(EXAMPLEDIR)/$(SQLRELAY).xsd
+ $(CHMOD) 644 $(EXAMPLEDIR)/$(SQLRELAY).xsd
$(MKINSTALLDIRS) $(EXAMPLEDIR)
$(CP) sqlrelay.conf $(EXAMPLEDIR)/$(SQLRELAY).conf
$(CHMOD) 644 $(EXAMPLEDIR)/$(SQLRELAY).conf
|