From 89fe84ead166556a729b723829d2654bc52803f1 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Thu, 30 Jun 2022 07:16:34 +0200 Subject: [PATCH] Makefile: Drop update-po rule This is not called from anywhere, and does not match the contemporary workflow where PO files are pulled from weblate. --- Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Makefile b/Makefile index bc9f429..a1c6fd3 100644 --- a/Makefile +++ b/Makefile @@ -72,12 +72,6 @@ po/$(PACKAGE_NAME).pot: po/$(PACKAGE_NAME).html.pot po/$(PACKAGE_NAME).js.pot po po/LINGUAS: echo $(LINGUAS) | tr ' ' '\n' > $@ -# Update translations against current PO template -update-po: po/$(PACKAGE_NAME).pot - for lang in $(LINGUAS); do \ - msgmerge --output-file=po/$$lang.po po/$$lang.po $<; \ - done - # # Build/Install/dist # @@ -196,4 +190,4 @@ $(NODE_MODULES_TEST): package.json env -u NODE_ENV npm install env -u NODE_ENV npm prune -.PHONY: all clean install devel-install print-version dist node-cache rpm check vm update-po print-vm devel-uninstall +.PHONY: all clean install devel-install print-version dist node-cache rpm check vm print-vm devel-uninstall