From: Konstantin Stepanov Date: Wed, 22 Dec 2010 16:09:47 +0000 (+0200) Subject: Makefile: fixed shell syntax error X-Git-Tag: v1.5.0~1 X-Git-Url: http://vcs.maemo.org/git/?p=dbuscron;a=commitdiff_plain;h=c6a3ccd13d2e9ee995a048a45b7ba226801cd38b Makefile: fixed shell syntax error --- diff --git a/Makefile b/Makefile index 7ec5814..53b6053 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ compile: .py.pyo install: compile for f in $(BINFILES); do \ - install -o root -g root -m 0755 ./$$f $(PREFIX)/`basename $$f .py` + install -o root -g root -m 0755 ./$$f $(PREFIX)/`basename $$f .py`; done install -o root -g root -m 0755 -d $(PYMODULES)/dbuscron/shell find ./dbuscron -name "*.pyo" | xargs -I {} install -o root -g root -m 0644 {} $(PYMODULES)/{} install -o root -g root -m 0644 ./event.d/dbuscron $(DESTDIR)/etc/event.d/dbuscron