Mercurial > p > roundup > code
diff locale/GNUmakefile @ 2383:bacda30e7eb6
avoid duplicate $(PACKAGES): "uniq" ain't really unique without "sort"
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sat, 29 May 2004 04:35:03 +0000 |
| parents | 00001a0e3fe5 |
| children | 33469189bf86 |
line wrap: on
line diff
--- a/locale/GNUmakefile Sat May 29 04:32:00 2004 +0000 +++ b/locale/GNUmakefile Sat May 29 04:35:03 2004 +0000 @@ -1,7 +1,7 @@ # Extract translatable strings from Roundup sources, # update and compile all existing translations # -# $Id: GNUmakefile,v 1.4 2004-05-29 02:22:13 a1s Exp $ +# $Id: GNUmakefile,v 1.5 2004-05-29 04:35:03 a1s Exp $ # tool locations XPOT ?= xpot @@ -11,7 +11,7 @@ TEMPLATE=roundup.pot -PACKAGES=$(shell find ../roundup -name '*.py'|sed -e 's,/[^/]*$$,,'|uniq) +PACKAGES=$(shell find ../roundup -name '*.py'|sed -e 's,/[^/]*$$,,'|sort|uniq) SOURCES=$(PACKAGES:=/*.py) PO_FILES=$(wildcard *.po) MO_FILES=$(PO_FILES:.po=.mo)
