From patchwork Sat Oct 10 10:03:18 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 528574 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id F30F1140D24 for ; Sat, 10 Oct 2015 21:05:05 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 28F6F9126C; Sat, 10 Oct 2015 10:05:05 +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 IJRqDrhIsj1j; Sat, 10 Oct 2015 10:05:00 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 3BF05909A4; Sat, 10 Oct 2015 10:04:08 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 230811C1F36 for ; Sat, 10 Oct 2015 10:03:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 1E8C932E1F for ; Sat, 10 Oct 2015 10:03:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tIFVE8RQInDE for ; Sat, 10 Oct 2015 10:03:53 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [212.27.42.1]) by silver.osuosl.org (Postfix) with ESMTPS id 9770A32DCC for ; Sat, 10 Oct 2015 10:03:53 +0000 (UTC) Received: from adeos.localdomain (unknown [81.57.22.125]) by smtp1-g21.free.fr (Postfix) with ESMTP id 22C5D940063; Sat, 10 Oct 2015 12:03:52 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Sat, 10 Oct 2015 12:03:18 +0200 Message-Id: <1444471422-15118-14-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1444471422-15118-1-git-send-email-romain.naour@openwide.fr> References: <1444471422-15118-1-git-send-email-romain.naour@openwide.fr> Subject: [Buildroot] [PATCH v3 13/37] package/efl: add libblkid dependency X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Romain Naour --- package/efl/Config.in | 1 + package/efl/efl.mk | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/package/efl/Config.in b/package/efl/Config.in index 1e5485f..aec02d0 100644 --- a/package/efl/Config.in +++ b/package/efl/Config.in @@ -28,6 +28,7 @@ config BR2_PACKAGE_EFL_RECOMMENDED_CONFIG select BR2_PACKAGE_LIBSNDFILE select BR2_PACKAGE_PULSEAUDIO select BR2_PACKAGE_UTIL_LINUX + select BR2_PACKAGE_UTIL_LINUX_LIBBLKID select BR2_PACKAGE_UTIL_LINUX_LIBMOUNT default y help diff --git a/package/efl/efl.mk b/package/efl/efl.mk index 32a684f..c30ce5d 100644 --- a/package/efl/efl.mk +++ b/package/efl/efl.mk @@ -45,6 +45,11 @@ else EFL_CONF_OPTS += --disable-libmount endif +# libblkid is part of required tools, see EFL's README. +ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBBLKID),y) +EFL_DEPENDENCIES += util-linux +endif + # If fontconfig is disabled, this is going to make general font # searching not work, and only some very direct 'load /path/file.ttf' # will work alongside some old-school ttf file path searching. This