Skip to content

Commit 6497599

Browse files
author
Alexander Smishlajev
committed
add template directories to the list of Python packages for message extraction
1 parent 43a43a5 commit 6497599

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

locale/GNUmakefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Extract translatable strings from Roundup sources,
22
# update and compile all existing translations
33
#
4-
# $Id: GNUmakefile,v 1.10 2006-03-04 09:04:29 a1s Exp $
4+
# $Id: GNUmakefile,v 1.11 2006-11-16 14:14:42 a1s Exp $
55

66
# tool locations
77
XPOT ?= xpot
@@ -12,7 +12,8 @@ PYTHON ?= python
1212

1313
TEMPLATE=roundup.pot
1414

15-
PACKAGES=$(shell find ../roundup -name '*.py'|sed -e 's,/[^/]*$$,,'|sort|uniq)
15+
PACKAGES=$(shell find ../roundup ../templates -name '*.py' \
16+
| sed -e 's,/[^/]*$$,,' | sort | uniq)
1617
SOURCES=$(PACKAGES:=/*.py)
1718
PO_FILES=$(wildcard *.po)
1819
MO_FILES=$(PO_FILES:.po=.mo)

0 commit comments

Comments
 (0)