From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 04 Jul 2023 09:19:00 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qGaJS-00EVBV-2y for lore@lore.pengutronix.de; Tue, 04 Jul 2023 09:19:00 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1qGaJP-0003Hq-2S; Tue, 04 Jul 2023 09:18:59 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1qGaIy-0003HT-Vc; Tue, 04 Jul 2023 09:18:33 +0200 From: Michael Tretter To: ptxdist@pengutronix.de Date: Tue, 4 Jul 2023 09:18:32 +0200 Message-Id: <20230704071832.3360626-1-m.tretter@pengutronix.de> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] glibc: fix typo GLIBC_GCONF_BASE -> GLIBC_GCONV_BASE X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: mtr@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Fix the typo in the config item to fix the grep for GCONV. Signed-off-by: Michael Tretter --- rules/glibc.in | 8 ++++---- rules/glibc.make | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/rules/glibc.in b/rules/glibc.in index 345d59a306c8..2bcaa8893e64 100644 --- a/rules/glibc.in +++ b/rules/glibc.in @@ -258,13 +258,13 @@ config GLIBC_I18N_RAWDATA menu "Install gconv libraries " -config GLIBC_GCONF_BASE +config GLIBC_GCONV_BASE bool config GLIBC_GCONV_DEF bool prompt "default gconv modules" - select GLIBC_GCONF_BASE + select GLIBC_GCONV_BASE default y help install the iso8859-1 (Latin Alphabet No.1) and the iso8859-15 (Latin @@ -274,14 +274,14 @@ config GLIBC_GCONV_DEF config GLIBC_GCONV_UTF bool prompt "gconv modules for UTF" - select GLIBC_GCONF_BASE + select GLIBC_GCONV_BASE help install the gconv modules for UTF conversion config GLIBC_GCONV_ZH bool prompt "gconv modules for chinese language" - select GLIBC_GCONF_BASE + select GLIBC_GCONV_BASE help install the gconv modules for chinese language, including BIG5 and GB18030 diff --git a/rules/glibc.make b/rules/glibc.make index a550f4b9206a..f42901193a83 100644 --- a/rules/glibc.make +++ b/rules/glibc.make @@ -128,7 +128,7 @@ ifdef PTXCONF_GLIBC_NSL @$(call install_copy_toolchain_lib, glibc, libnsl.so.1) endif -ifdef PTXCONF_GLIBC_GCONF_BASE +ifdef PTXCONF_GLIBC_GCONV_BASE @$(call install_copy_toolchain_lib, glibc, gconv/gconv-modules,, n) endif -- 2.39.2