From: Konstantin Stepanov Date: Mon, 13 Dec 2010 23:23:24 +0000 (+0200) Subject: Makefile: ignore error on existing config X-Git-Tag: v1.2.0~8 X-Git-Url: http://vcs.maemo.org/git/?p=dbuscron;a=commitdiff_plain;h=401ac7f22d9a3ae4205ef7c3b6736d70d33180ab Makefile: ignore error on existing config --- 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."