diff options
author | Eric Koegel <eric.koegel@gmail.com> | 2014-10-19 15:17:23 +0300 |
---|---|---|
committer | Eric Koegel <eric.koegel@gmail.com> | 2014-10-19 15:17:23 +0300 |
commit | 856b0ece700915bf989a6663fdddb89559cba820 (patch) | |
tree | 85903f778caeed3499c48efec521efa2b7b19016 /data | |
parent | 300a86cd61a5a1d1b9610a97b4c009dc632d36b9 (diff) | |
download | ConsoleKit2-856b0ece700915bf989a6663fdddb89559cba820.tar.gz |
Add --with-logrotate-dir configure option
We now install the logrotate file and default to /etc/logrotate.d
as the default to install to.
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index fd51f9d..c736c61 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -6,6 +6,9 @@ dbusconf_DATA = ConsoleKit.conf seatdir = $(sysconfdir)/ConsoleKit/seats.d seat_DATA = 00-primary.seat +logrotatedir = $(LOGROTATE_DIR) +logrotate_DATA = consolekit.logrotate + if HAVE_POLKIT polkit_policydir = $(datadir)/polkit-1/actions dist_polkit_policy_DATA = \ @@ -75,13 +78,13 @@ EXTRA_DIST = \ ck-log-system-stop \ $(dbusconf_DATA) \ $(seat_DATA) \ + $(logrotate_DATA) \ $(service_in_files) \ console-kit-daemon.service.in \ console-kit-log-system-start.service.in \ console-kit-log-system-stop.service.in \ console-kit-log-system-restart.service.in \ 90consolekit \ - consolekit.logrotate \ $(NULL) MAINTAINERCLEANFILES = \ |