Files

23 lines
821 B
Plaintext
Raw Permalink Normal View History

2020-06-14 14:51:20 +00:00
--- etc/Makefile.orig 2020-06-14 14:27:43 UTC
2015-05-08 04:03:04 +00:00
+++ etc/Makefile
2020-06-14 14:51:20 +00:00
@@ -3,12 +3,14 @@ top_builddir = ..
2016-04-03 10:17:44 +00:00
include ../config.mk
2015-05-08 04:03:04 +00:00
install:
2016-04-03 10:17:44 +00:00
- $(MKINSTALLDIRS) $(sysconfdir)/$(SQLRELAY).conf.d
- $(CP) sqlrelay.xsd $(sysconfdir)/$(SQLRELAY).xsd
2017-03-26 09:49:52 +00:00
- $(CHMOD) 644 $(sysconfdir)/$(SQLRELAY).xsd
2020-06-14 14:51:20 +00:00
+ $(MKINSTALLDIRS) $(sysconfdir)/$(SQLRELAY)
$(MKINSTALLDIRS) $(EXAMPLEDIR)
2016-04-03 10:17:44 +00:00
- $(CP) sqlrelay.conf $(EXAMPLEDIR)/$(SQLRELAY).conf
- $(CHMOD) 644 $(EXAMPLEDIR)/$(SQLRELAY).conf
2017-03-26 09:49:52 +00:00
+ $(CP) sqlrelay.conf $(sysconfdir)/$(SQLRELAY)/conf.sample
+ $(CHMOD) 644 $(sysconfdir)/$(SQLRELAY)/conf.sample
+ $(CP) sqlrelay.xsd $(sysconfdir)/$(SQLRELAY)/
+ $(CHMOD) 644 $(sysconfdir)/$(SQLRELAY)/sqlrelay.xsd
2016-04-03 10:17:44 +00:00
+ $(CP) sqlrelay.conf $(EXAMPLEDIR)/sqlrelay.conf
+ $(CHMOD) 644 $(EXAMPLEDIR)/sqlrelay.conf
2015-05-08 04:03:04 +00:00
2016-04-03 10:17:44 +00:00
uninstall:
$(RM) $(EXAMPLEDIR)/$(SQLRELAY).conf \