From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Sat, 08 Jul 2023 09:04:02 +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 1qI1z9-002ahL-Ro for lore@lore.pengutronix.de; Sat, 08 Jul 2023 09:04:02 +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 1qI1z3-0001bH-RS; Sat, 08 Jul 2023 09:03:57 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qI1y4-0007U6-Er; Sat, 08 Jul 2023 09:02:56 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1qI1y3-00Ctyt-PQ; Sat, 08 Jul 2023 09:02:55 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1qI1y3-009Frf-1Q; Sat, 08 Jul 2023 09:02:55 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Sat, 8 Jul 2023 09:02:55 +0200 Message-Id: <20230708070255.2205928-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230704071832.3360626-1-m.tretter@pengutronix.de> References: <20230704071832.3360626-1-m.tretter@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] 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: Michael Tretter 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 Thanks, applied as a5ff1ad3a24c700884a184feb0d65c2f56987cc2. Michael [sent from post-receive hook] On Sat, 08 Jul 2023 09:02:55 +0200, Michael Tretter wrote: > Fix the typo in the config item to fix the grep for GCONV. > > Signed-off-by: Michael Tretter > Message-Id: <20230704071832.3360626-1-m.tretter@pengutronix.de> > Signed-off-by: Michael Olbrich > > 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 e3b3574ccf0b..2dd74a70fe80 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 >