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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 905A3C433F5 for ; Wed, 29 Sep 2021 19:40:56 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 59C2D613DA for ; Wed, 29 Sep 2021 19:40:56 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 59C2D613DA Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=korsgaard.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=buildroot.org Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id 26BA94073E; Wed, 29 Sep 2021 19:40:56 +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 FEO7rK8NiS6h; Wed, 29 Sep 2021 19:40:55 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp2.osuosl.org (Postfix) with ESMTP id 4E04140730; Wed, 29 Sep 2021 19:40:54 +0000 (UTC) Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id E2D4B1BF388 for ; Wed, 29 Sep 2021 19:40:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id D3A1D83F31 for ; Wed, 29 Sep 2021 19:40:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IrWU4rsVvjca for ; Wed, 29 Sep 2021 19:40:38 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.122]) by smtp1.osuosl.org (Postfix) with ESMTP id 2E63783F22 for ; Wed, 29 Sep 2021 19:40:38 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id C7C058D656; Wed, 29 Sep 2021 19:38:17 +0000 (UTC) From: Peter Korsgaard To: buildroot@buildroot.org Date: Wed, 29 Sep 2021 21:34:34 +0200 X-Git-Refname: refs/heads/2021.02.x X-Git-Oldrev: e26677ed49239ad896ba94b74422d8a4b055b902 X-Git-Newrev: bcc232c23aac108ff3ee9779451c1d5ffb22ddf0 X-Patchwork-Hint: ignore Message-Id: <20210929193817.C7C058D656@busybox.osuosl.org> Subject: [Buildroot] [git commit branch/2021.02.x] package/botan: fix boost dependency 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=bcc232c23aac108ff3ee9779451c1d5ffb22ddf0 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2021.02.x only build --with-boost when both required modules (filesystem and system) are also selected. Fixes: http://autobuild.buildroot.net/results/4fbf2a63f9ddfbc540ce7dabd10964b311477c06 Signed-off-by: Michael Nosthoff Signed-off-by: Yann E. MORIN (cherry picked from commit 5572b2e53157db2958be2c52f4e7c2a1b0408d78) Signed-off-by: Peter Korsgaard --- package/botan/botan.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/botan/botan.mk b/package/botan/botan.mk index 802dab9e30..aa0bb9b261 100644 --- a/package/botan/botan.mk +++ b/package/botan/botan.mk @@ -53,7 +53,7 @@ ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) BOTAN_CONF_OPTS += --without-os-feature=getauxval endif -ifeq ($(BR2_PACKAGE_BOOST),y) +ifeq ($(BR2_PACKAGE_BOOST_FILESYSTEM)$(BR2_PACKAGE_BOOST_SYSTEM),yy) BOTAN_DEPENDENCIES += boost BOTAN_CONF_OPTS += --with-boost endif _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot