From: Oleg Broytman Date: Tue, 22 Dec 2020 22:54:01 +0000 (+0300) Subject: Fix(m_librarian/web/views/Makefile): `compile` -> `compileall` X-Git-Tag: 0.1.6~21 X-Git-Url: https://git.phdru.name/?p=m_librarian.git;a=commitdiff_plain;h=7489a65ee4790a97d3c94cff2e91592ef5629536 Fix(m_librarian/web/views/Makefile): `compile` -> `compileall` --- diff --git a/m_librarian/web/views/Makefile b/m_librarian/web/views/Makefile index 8f6ed13..fde5f08 100644 --- a/m_librarian/web/views/Makefile +++ b/m_librarian/web/views/Makefile @@ -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)