From fc8b021e7aaa79cb4eb40bd01fe00121197f259d Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Tue, 15 Nov 2022 22:07:28 -0600 Subject: [PATCH] share: i18n: fix mismatch in BIG5 esdb generation In the first loop, we setup Big5_$i_variable where $i are elements of $PART with : replaced to @. Do the same in the second loop when we're trying to refer to the same variable. No functional change, because none of the in-tree mappings have an @ in them. Sponsored by: Klara, Inc. --- share/i18n/esdb/BIG5/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/i18n/esdb/BIG5/Makefile b/share/i18n/esdb/BIG5/Makefile index f7b1512893f..ac95f60e99e 100644 --- a/share/i18n/esdb/BIG5/Makefile +++ b/share/i18n/esdb/BIG5/Makefile @@ -16,7 +16,7 @@ Big5_$i_variable!= sed \ # XXX: FIXME Big5-${i:S/:/@/}.src: Big5.src Big5.variable sed -e 's/encoding/Big5-$i/' \ - -e 's/variable/${Big5_$i_variable}/' \ + -e 's/variable/${Big5_${i:S/@/:/}_variable}/' \ ${.CURDIR}/Big5.src > $@ @echo ${.TARGET} >>.tmpfiles .endfor