diff options
author | Brion Vibber <brion@pobox.com> | 2009-12-01 20:46:52 +0000 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-12-01 20:46:52 +0000 |
commit | de13c4838e8d7c00e2f9b676b5d005317d467538 (patch) | |
tree | 4accd4a1bb8a09ed3b1d85dc394721affc1ca1a5 /locale/Makefile | |
parent | 220510f3726610040fecd68ddf44f638ba1a02dc (diff) |
Fix makefile wildcards for locale compilation (now works on Ubuntu 8.04)
Diffstat (limited to 'locale/Makefile')
-rw-r--r-- | locale/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/locale/Makefile b/locale/Makefile index 4f17f683f..00700ada1 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -2,10 +2,12 @@ all : translations -translations : */LC_MESSAGES/statusnet.mo +trans = $(patsubst %.po,%.mo,$(wildcard */LC_MESSAGES/statusnet.po)) + +translations : $(trans) clean : - rm -f */LC_MESSAGES/statusnet.mo + rm -f $(trans) %.mo : %.po msgfmt -o $@ $< |