From patchwork Fri Aug 18 06:35:21 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartosz Bilas X-Patchwork-Id: 1822714 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=buildroot.org (client-ip=140.211.166.133; helo=smtp2.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver=patchwork.ozlabs.org) Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4RRsZC1ynxz1ygH for ; Fri, 18 Aug 2023 16:35:31 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id 1F2CC40490; Fri, 18 Aug 2023 06:35:29 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp2.osuosl.org 1F2CC40490 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 z3o5hEndPzuH; Fri, 18 Aug 2023 06:35:28 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp2.osuosl.org (Postfix) with ESMTP id 751F7403A2; Fri, 18 Aug 2023 06:35:27 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp2.osuosl.org 751F7403A2 X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id A87351BF2B4 for ; Fri, 18 Aug 2023 06:35:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 7E37D60E5B for ; Fri, 18 Aug 2023 06:35:26 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org 7E37D60E5B X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp3.osuosl.org ([127.0.0.1]) by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31ZRUZvfFC-2 for ; Fri, 18 Aug 2023 06:35:25 +0000 (UTC) Received: from mail.grinn-global.com (mail.grinn-global.com [77.55.128.204]) by smtp3.osuosl.org (Postfix) with ESMTPS id A6C4C60E39 for ; Fri, 18 Aug 2023 06:35:25 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org A6C4C60E39 X-Virus-Scanned: by amavisd-new using ClamAV (2) Received: from bartekk-pc.lan (ip-194.4.61.77.edial.pl [194.4.61.77]) by server220076.nazwa.pl (Postfix) with ESMTP id A64C11BC35B; Fri, 18 Aug 2023 08:35:22 +0200 (CEST) From: Bartosz Bilas To: buildroot@buildroot.org Date: Fri, 18 Aug 2023 08:35:21 +0200 Message-ID: <20230818063521.6191-1-b.bilas@grinn-global.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] package/host-gdb: disable source-highlight 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: , Cc: Bartosz Bilas , thomas.petazzoni@bootlin.com Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" This is the follow-up commit to the 4de60e4 which disables sourcehighlight dependency for the target GDB package. Do the same for the host variant to be sure that this won't be picked up from the host system. Signed-off-by: Bartosz Bilas --- package/gdb/gdb.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk index cee7b37bcd..d9bfb39a41 100644 --- a/package/gdb/gdb.mk +++ b/package/gdb/gdb.mk @@ -255,7 +255,8 @@ HOST_GDB_CONF_OPTS = \ --with-system-zlib \ --with-curses \ --without-mpfr \ - $(GDB_DISABLE_BINUTILS_CONF_OPTS) + $(GDB_DISABLE_BINUTILS_CONF_OPTS) \ + --disable-source-highlight ifeq ($(BR2_PACKAGE_HOST_GDB_TUI),y) HOST_GDB_CONF_OPTS += --enable-tui