Mercurial > hg
changeset 12816:61c73c9dce1d stable
Makefile: remove underscore in var name
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 23 Oct 2010 16:53:25 +0200 |
parents | 079a618ea89d |
children | 372370923b30 |
files | Makefile |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Sat Oct 23 14:59:19 2010 +0200 +++ b/Makefile Sat Oct 23 16:53:25 2010 +0200 @@ -8,7 +8,7 @@ export PREFIX PYTHON=python PURE= -PYTHON_FILES:=$(shell find mercurial hgext doc -name '*.py') +PYFILES:=$(shell find mercurial hgext doc -name '*.py') help: @echo 'Commonly used make targets:' @@ -85,7 +85,7 @@ update-pot: i18n/hg.pot -i18n/hg.pot: $(PYTHON_FILES) mercurial/help/*.txt +i18n/hg.pot: $(PYFILES) mercurial/help/*.txt $(PYTHON) i18n/hggettext mercurial/commands.py \ hgext/*.py hgext/*/__init__.py mercurial/help/*.txt > i18n/hg.pot # All strings marked for translation in Mercurial contain @@ -94,7 +94,7 @@ # parse them even though they are not marked for translation. # Extracting with an explicit encoding of ISO-8859-1 will make # xgettext "parse" and ignore them. - echo $(PYTHON_FILES) | xargs \ + echo $(PYFILES) | xargs \ xgettext --package-name "Mercurial" \ --msgid-bugs-address "<mercurial-devel@selenic.com>" \ --copyright-holder "Matt Mackall <mpm@selenic.com> and others" \