blob: 9e748035daa3ffc994f2cc1c646cc3653195b84f (
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
|