From c6a3ccd13d2e9ee995a048a45b7ba226801cd38b Mon Sep 17 00:00:00 2001 From: Konstantin Stepanov Date: Wed, 22 Dec 2010 18:09:47 +0200 Subject: [PATCH] Makefile: fixed shell syntax error --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.9.5