From 1d7d9a832eddd7e9813919744d03f4e00ab8d68d Mon Sep 17 00:00:00 2001 From: Evgeny Grin Date: Sun, 21 May 2023 16:21:49 +0300 Subject: [PATCH] Ticket #4466: fix sed usage in po/Makefile. 'po' directory does not use automake assignment. This is a correction for f45d02ba2ad00175874c77a76481678498fd0abb. Closes MidnightCommander/mc#191. Signed-off-by: Andrew Borodin --- po/Rules-pot-defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/Rules-pot-defaults b/po/Rules-pot-defaults index 1c51b56e2..d90e39c84 100644 --- a/po/Rules-pot-defaults +++ b/po/Rules-pot-defaults @@ -1,7 +1,7 @@ update-po: Makefile $(MAKE) $(DOMAIN).pot-update && \ - $(SED) \ + $${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;/' \