Makefile: fixed shell syntax error
authorKonstantin Stepanov <kstep@p-nut.info>
Wed, 22 Dec 2010 16:09:47 +0000 (18:09 +0200)
committerKonstantin Stepanov <kstep@p-nut.info>
Wed, 22 Dec 2010 16:11:55 +0000 (18:11 +0200)
Makefile

index 7ec5814..53b6053 100644 (file)
--- 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