mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
25 lines
913 B
Plaintext
25 lines
913 B
Plaintext
$NetBSD: patch-etc_Makefile,v 1.2 2015/05/20 13:26:45 ryoon Exp $
|
|
|
|
Install config file examples properly.
|
|
--- etc/Makefile.orig 2015-03-16 04:08:11.000000000 +0000
|
|
+++ etc/Makefile
|
|
@@ -5,12 +5,12 @@ include ../config.mk
|
|
install:
|
|
$(MKINSTALLDIRS) $(sysconfdir)
|
|
$(MKINSTALLDIRS) $(sysconfdir)/sqlrelay.conf.d
|
|
- $(CP) sqlrelay.conf.example $(sysconfdir)
|
|
- $(CHMOD) 644 $(sysconfdir)/sqlrelay.conf.example
|
|
- $(CP) sqlrelay.dtd $(sysconfdir)
|
|
- $(CHMOD) 644 $(sysconfdir)/sqlrelay.dtd
|
|
- $(CP) sqlrelay.xsd $(sysconfdir)
|
|
- $(CHMOD) 644 $(sysconfdir)/sqlrelay.xsd
|
|
+ $(CP) sqlrelay.conf.example $(EXAMPLEDIR)
|
|
+ $(CHMOD) 644 $(EXAMPLEDIR)/sqlrelay.conf.example
|
|
+ $(CP) sqlrelay.dtd $(EXAMPLEDIR)
|
|
+ $(CHMOD) 644 $(EXAMPLEDIR)/sqlrelay.dtd
|
|
+ $(CP) sqlrelay.xsd $(EXAMPLEDIR)
|
|
+ $(CHMOD) 644 $(EXAMPLEDIR)/sqlrelay.xsd
|
|
$(CP) sqlrelay.conf.example $(EXAMPLEDIR)/sqlrelay.conf
|
|
$(CHMOD) 644 $(EXAMPLEDIR)/sqlrelay.conf
|
|
|