Fix makefile wildcards for locale compilation (now works on Ubuntu 8.04)
This commit is contained in:
parent
7591439451
commit
46e14c762a
|
@ -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 $@ $<
|
||||
|
|
Loading…
Reference in New Issue
Block a user