From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id BD8C1C433F5 for ; Sat, 8 Jan 2022 11:22:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id 68C904016F; Sat, 8 Jan 2022 11:22:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp2.osuosl.org ([127.0.0.1]) by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TsQXEUT4oxeT; Sat, 8 Jan 2022 11:22:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp2.osuosl.org (Postfix) with ESMTP id 65ED24012E; Sat, 8 Jan 2022 11:22:11 +0000 (UTC) Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 4849F1BF34E for ; Sat, 8 Jan 2022 11:22:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id 42E864012E for ; Sat, 8 Jan 2022 11:22:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp2.osuosl.org ([127.0.0.1]) by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aD-lYugq5HDL for ; Sat, 8 Jan 2022 11:22:09 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.122]) by smtp2.osuosl.org (Postfix) with ESMTP id 631E8400FF for ; Sat, 8 Jan 2022 11:22:09 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4045) id 3CBB282A91; Sat, 8 Jan 2022 11:15:57 +0000 (UTC) From: Thomas Petazzoni To: buildroot@buildroot.org Date: Sat, 8 Jan 2022 12:21:59 +0100 X-Git-Refname: refs/heads/master X-Git-Oldrev: c240410d4b38c7946d2dd65c1c1eec6d172a0814 X-Git-Newrev: 5630e83c8452d3e9039feb15fd30ea005bfc6b55 X-Patchwork-Hint: ignore Message-Id: <20220108111557.3CBB282A91@busybox.osuosl.org> Subject: [Buildroot] [git commit] package/rhash: fix activation of gettext X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" commit: https://git.buildroot.net/buildroot/commit/?id=5630e83c8452d3e9039feb15fd30ea005bfc6b55 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master Since commit ead2afda13e5541a7d8e759f5cfec4ab38605dcc, gettext is wrongly disabled when BR2_SYSTEM_ENABLE_NLS is set Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- package/rhash/rhash.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/rhash/rhash.mk b/package/rhash/rhash.mk index d19c355cbb..02af0aa57b 100644 --- a/package/rhash/rhash.mk +++ b/package/rhash/rhash.mk @@ -15,9 +15,9 @@ RHASH_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES) RHASH_ADDLDFLAGS = $(TARGET_NLS_LIBS) ifeq ($(BR2_SYSTEM_ENABLE_NLS),y) -RHASH_CONF_OPTS += --disable-gettext -else RHASH_CONF_OPTS += --enable-gettext +else +RHASH_CONF_OPTS += --disable-gettext endif ifeq ($(BR2_PACKAGE_OPENSSL)x$(BR2_STATIC_LIBS),yx) _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot