From patchwork Mon Jul 29 12:11:40 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julien Boibessot X-Patchwork-Id: 1138333 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=free.fr Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 45xz7y59lvz9s7T for ; Mon, 29 Jul 2019 22:11:56 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E65E7879C2; Mon, 29 Jul 2019 12:11:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D+fdZRjNIx4F; Mon, 29 Jul 2019 12:11:48 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 34554879AA; Mon, 29 Jul 2019 12:11:48 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 6ECCD1BF3A4 for ; Mon, 29 Jul 2019 12:11:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 68EDA879A1 for ; Mon, 29 Jul 2019 12:11:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k3ezpEP-p63B for ; Mon, 29 Jul 2019 12:11:46 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [212.27.42.2]) by whitealder.osuosl.org (Postfix) with ESMTPS id DC3608671E for ; Mon, 29 Jul 2019 12:11:45 +0000 (UTC) Received: from localhost.localdomain (unknown [88.127.110.161]) by smtp2-g21.free.fr (Postfix) with ESMTP id 0AFF62003E3; Mon, 29 Jul 2019 14:11:42 +0200 (CEST) From: julien.boibessot@free.fr To: buildroot@buildroot.org Date: Mon, 29 Jul 2019 14:11:40 +0200 Message-Id: <1564402300-3993-1-git-send-email-julien.boibessot@free.fr> X-Mailer: git-send-email 2.1.4 Subject: [Buildroot] [PATCH 1/1] package/host-mtd: fixes build X-BeenThere: buildroot@busybox.net 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: Julien BOIBESSOT MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" From: Julien BOIBESSOT Fixes following build error when Host doesn't have zstd devt files: configure: WARNING: cannot find ZSTD library required for mkfs program configure: mtd-utils can optionally be built without mkfs.ubifs configure: mtd-utils can optionally be built without ZSTD support configure: WARNING: cannot find headers for OpenSSL library configure: WARNING: disabling OpenSSL support configure: error: missing one or more dependencies package/pkg-generic.mk:228: recipe for target '/workspace/buildroot_git_devt/output/build/host-mtd-2.1.1/.stamp_configured' failed make: *** [/workspace/buildroot_git_devt/output/build/host-mtd-2.1.1/.stamp_configured] Error 1 Signed-off-by: Julien BOIBESSOT Tested-by: Markus Mayer --- package/mtd/mtd.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/mtd/mtd.mk b/package/mtd/mtd.mk index 0de14db..65e7622 100644 --- a/package/mtd/mtd.mk +++ b/package/mtd/mtd.mk @@ -46,7 +46,7 @@ else MTD_CONF_OPTS += --without-xattr endif -HOST_MTD_DEPENDENCIES = host-zlib host-lzo host-util-linux +HOST_MTD_DEPENDENCIES = host-zlib host-lzo host-util-linux host-zstd HOST_MTD_CONF_OPTS = \ --with-jffs \ --with-ubifs \