diff options
author | Brion Vibber <brion@pobox.com> | 2009-12-01 12:55:55 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-12-01 12:55:55 -0800 |
commit | 95663e70df2416655864a7d09cdb4b07245ecb4d (patch) | |
tree | 5f8d11bd2b49ff592c1696226db6d5cb26597632 | |
parent | e28e8cc1d7e3c6683237c86955b7c1da23c02696 (diff) | |
parent | 46e14c762a81e8eb3fe197a6c87c10a6521a9cc1 (diff) |
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x
-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 $@ $< |