diff options
author | Christian M. Adams <chadams@redhat.com> | 2022-12-02 16:46:16 +0100 |
---|---|---|
committer | Christian M. Adams <chadams@redhat.com> | 2022-12-02 16:46:16 +0100 |
commit | 642003e2079516024339360284433c1f95978ec3 (patch) | |
tree | fee4790b42b2c7a8fef3282e0c6e9f532aa70c8a /Makefile | |
parent | Merge pull request #13266 from shanemcd/leave-lang-alone (diff) | |
download | awx-642003e2079516024339360284433c1f95978ec3.tar.xz awx-642003e2079516024339360284433c1f95978ec3.zip |
Fix make messages target by specify lang
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -598,7 +598,7 @@ messages: @if [ "$(VENV_BASE)" ]; then \ . $(VENV_BASE)/awx/bin/activate; \ fi; \ - $(PYTHON) manage.py makemessages -l $(LANG) --keep-pot + $(PYTHON) manage.py makemessages -l en_us --keep-pot print-%: @echo $($*) |