blob: 429f5fd21f052f61fe5f98855f4fee5755324220 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Update translations when the english master changes
NAME=remove-old-kernels
all:
update-po:
@for i in *.po; do \
msgmerge -v --no-wrap --previous --backup=none --update $$i $(NAME).pot; \
done
|