commit e1e81e1dd3b5ee33ec3db206832a6cf0306ea913
parent 56a2b320b55319de9f8e6239a1ead91d9fb655c0
Author: Florian Dold <florian@dold.me>
Date: Tue, 4 May 2021 22:02:35 +0200
makefile
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -51,6 +51,7 @@ locale-update: locale/messages.pot
.PHONY: locale-compile
locale-compile:
(for lang in `echo $(LANGUAGES)`; do \
+ echo compiling $$lang; \
$(pybabel) -q compile -d locale -l $$lang --use-fuzzy ; \
done)
@@ -61,7 +62,6 @@ locale: locale-update locale-compile
# Run the jinja2 templating engine to expand templates to HTML
# incorporating translations.
template: locale-compile
-
env BASEURL=$(opt_baseurl) ./make_site.py
.PHONY: run