From 369600bd5dfbad9bc92aed881de9e26f94f1b43a Mon Sep 17 00:00:00 2001 From: Konstantin Stepanov Date: Sun, 12 Dec 2010 17:24:27 +0200 Subject: [PATCH] Makefile: install example dbuscrontab file into /etc --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fd880c1..8ab516d 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,8 @@ install: python$(PYVERSION) -O -c 'import dbuscron' install -o root -g root -m 0644 ./dbuscron/*.$(PYSUFFIX) $(PYMODULES)/dbuscron install -o root -g root -m 0644 ./event.d/dbuscron $(DESTDIR)/etc/event.d/dbuscron - touch $(DESTDIR)/etc/dbuscrontab + test ! -f $(DESTDIR)/etc/dbuscrontab && \ + install -o root -g root -m 0644 ./doc/dbuscrontab $(DESTDIR)/etc/dbuscrontab @echo "Installation complete. Run \`dbuscrontab -e' to edit config file," @echo "then run \`initctl start dbuscron' to start dbuscron daemon." -- 1.7.9.5