From patchwork Thu Feb 10 19:23:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Korsgaard X-Patchwork-Id: 1591298 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=buildroot.org (client-ip=140.211.166.136; helo=smtp3.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver=) Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4JvmrH3LLVz9s0r for ; Fri, 11 Feb 2022 06:23:43 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id AACC160681; Thu, 10 Feb 2022 19:23:40 +0000 (UTC) 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 DAg6lU-9xcUp; Thu, 10 Feb 2022 19:23:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp3.osuosl.org (Postfix) with ESMTP id 028E0607F9; Thu, 10 Feb 2022 19:23:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id B86C91BF3BB for ; Thu, 10 Feb 2022 19:23:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id A5C1D40156 for ; Thu, 10 Feb 2022 19:23:37 +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 RzsJXD_vIvHO for ; Thu, 10 Feb 2022 19:23:37 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.8.0 Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by smtp2.osuosl.org (Postfix) with ESMTPS id D7B7D401F2 for ; Thu, 10 Feb 2022 19:23:36 +0000 (UTC) Received: (Authenticated sender: peter@korsgaard.com) by mail.gandi.net (Postfix) with ESMTPSA id B0D8260007; Thu, 10 Feb 2022 19:23:34 +0000 (UTC) Received: from peko by dell.be.48ers.dk with local (Exim 4.92) (envelope-from ) id 1nIF2U-0004Al-1G; Thu, 10 Feb 2022 20:23:34 +0100 From: Peter Korsgaard To: buildroot@buildroot.org Date: Thu, 10 Feb 2022 20:23:32 +0100 Message-Id: <20220210192333.15993-1-peter@korsgaard.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] package/libsigrok: drop host-python2 support 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 Golaszewski Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" host-python2 is gone, so always use host-python3. Signed-off-by: Peter Korsgaard --- package/libsigrok/libsigrok.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libsigrok/libsigrok.mk b/package/libsigrok/libsigrok.mk index 2a26518614..639ee4dc25 100644 --- a/package/libsigrok/libsigrok.mk +++ b/package/libsigrok/libsigrok.mk @@ -60,7 +60,7 @@ LIBSIGROK_CONF_OPTS += --enable-cxx LIBSIGROK_DEPENDENCIES += \ glibmm \ host-doxygen \ - $(if $(BR2_PACKAGE_PYTHON3),host-python3,host-python) + host-python3 else LIBSIGROK_CONF_OPTS += --disable-cxx endif