# HG changeset patch # User Martin Geisler # Date 1287845605 -7200 # Node ID 61c73c9dce1d6aeba2ae136a7424ee8dc34c37e0 # Parent 079a618ea89df047bb3587785e5e3df7660b6de0 Makefile: remove underscore in var name diff -r 079a618ea89d -r 61c73c9dce1d Makefile --- 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 "" \ --copyright-holder "Matt Mackall and others" \