From 401ac7f22d9a3ae4205ef7c3b6736d70d33180ab Mon Sep 17 00:00:00 2001 From: Konstantin Stepanov Date: Tue, 14 Dec 2010 01:23:24 +0200 Subject: [PATCH] Makefile: ignore error on existing config --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8ab516d..07af6fc 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ 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 - test ! -f $(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