From 1499e22a349e7c859099a8eac37dec0999c03343 Mon Sep 17 00:00:00 2001 From: "Tobias C. Berner" Date: Mon, 16 Aug 2021 14:50:42 +0200 Subject: [PATCH] german/hunspell: fix swiss-german dictionnary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - The swiss-german dictionary was not properly prepared, as the used sed (/bin/sed) was unable to replace 'ß' by 'ss'. - Use the shebangfix framework to make it use gsed, which is already depended on. PR: 257882 --- german/hunspell/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/german/hunspell/Makefile b/german/hunspell/Makefile index c1e95d240371..a2b15dcd3af1 100644 --- a/german/hunspell/Makefile +++ b/german/hunspell/Makefile @@ -25,7 +25,11 @@ USE_PERL5= build ALL_TARGET= hunspell-all NO_ARCH= yes -SHEBANG_FILES= bin/*.pl +SHEBANG_FILES= bin/*.pl \ + bin/conv_dict_de_CH +SHEBANG_LANG= sed +sed_OLD_CMD= /bin/sed +sed_CMD= ${LOCALBASE}/bin/gsed BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed -- 2.32.0