mc/po/Rules-pot-defaults
Evgeny Grin 1d7d9a832e Ticket #4466: fix sed usage in po/Makefile.
'po' directory does not use automake assignment.

This is a correction for f45d02ba2a.

Closes MidnightCommander/mc#191.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
2023-05-21 20:24:38 +03:00

14 lines
637 B
Plaintext

update-po: Makefile
$(MAKE) $(DOMAIN).pot-update && \
$${SED-sed} \
-e '/#, fuzzy/d' \
-e 's/Project-Id-Version: PACKAGE VERSION/Project-Id-Version: $(PACKAGE) $(VERSION)/' \
-e 's/^"Plural-Forms: nplurals=INTEGER;/# "Plural-Forms: nplurals=INTEGER;/' \
-e 's@Content-Type: text/plain; charset=CHARSET@Content-Type: text/plain; charset=utf-8@' \
< $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
mv -f $(DOMAIN).1po $(srcdir)/$(DOMAIN).pot
test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
$(MAKE) update-gmo && \
for i in $(srcdir)/*.po; do sed '/^#\:/d' < $$i > $$i.clean && mv -f $$i.clean $$i; done