From ef57be6163e74a8aa21707ae7daf73d16ed18884 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Tue, 2 Oct 2018 10:34:49 +0300 Subject: [PATCH] When stripping PO files, sort the output Reviewed-By: Christian Heimes --- po/Makefile.hack.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/Makefile.hack.in b/po/Makefile.hack.in index c57f1e150..92825d79f 100644 --- a/po/Makefile.hack.in +++ b/po/Makefile.hack.in @@ -11,7 +11,7 @@ PYTHON = @PYTHON@ .PHONY: strip-po strip-po: for po_file in $(POFILES); do \ - $(MSGATTRIB) --translated --no-fuzzy --no-location $$po_file > $$po_file.tmp || exit 1; \ + $(MSGATTRIB) --translated --no-fuzzy --no-location -s $$po_file > $$po_file.tmp || exit 1; \ mv $$po_file.tmp $$po_file || exit 1; \ done export FILES_TO_REMOVE=`find $(srcdir) -name '*.po' -empty` || exit 1; \