diff options
author | ng0 <ng0@n0.is> | 2018-01-15 23:45:51 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2018-01-15 23:45:51 +0000 |
commit | 96ee7de667e64a646514af670d78544a806d46ba (patch) | |
tree | 8beeac81649e9b8dd98cdace69ce832b55c3c70b | |
parent | e94df1009044de07f80129c141d9448bc57d7bde (diff) |
Makefile: PYTHONPATH should be appended, not replaced!
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ all: locale template # Extract translateable strings from jinga2 templates. locale/messages.pot: *.j2 common/*.j2.inc - env PYTHONPATH="." pybabel extract -F locale/babel.map -o locale/messages.pot . + env PYTHONPATH="$PYTHONPATH:." pybabel extract -F locale/babel.map -o locale/messages.pot . # Update translation (.po) files with new strings. locale-update: locale/messages.pot |