]> git.phdru.name Git - m_librarian.git/commitdiff
Fix(m_librarian/web/views/Makefile): `compile` -> `compileall`
authorOleg Broytman <phd@phdru.name>
Tue, 22 Dec 2020 22:54:01 +0000 (01:54 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 22 Dec 2020 22:54:01 +0000 (01:54 +0300)
m_librarian/web/views/Makefile

index 8f6ed13abde592c0c21033db7834bedf62161ebe..fde5f086eeb43587cf71cc740e48bcde93f4c36a 100644 (file)
@@ -4,8 +4,8 @@
 
 %.py: %.tmpl
        cheetah compile --nobackup $<
-       python    -m compile $@
-       python -O -m compile $@
+       python    -m compileall $@
+       python -O -m compileall $@
 
 
 templates = $(shell echo *.tmpl)