From patchwork Wed Jul 3 22:04:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 256766 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 562BB2C009E for ; Thu, 4 Jul 2013 08:10:33 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id EEF6C31D54; Wed, 3 Jul 2013 22:04:55 +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 eNVoV7Qi1GVt; Wed, 3 Jul 2013 22:04:55 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id B9B3D31D1A; Wed, 3 Jul 2013 22:04:54 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 1CC4A8F753 for ; Wed, 3 Jul 2013 22:05:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E809B849AF for ; Wed, 3 Jul 2013 22:04:52 +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 L0vLAKaldH2N for ; Wed, 3 Jul 2013 22:04:51 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by whitealder.osuosl.org (Postfix) with ESMTP id 9E434816C5 for ; Wed, 3 Jul 2013 22:04:51 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 2E74B79B; Thu, 4 Jul 2013 00:04:50 +0200 (CEST) Received: from localhost (AToulouse-651-1-103-169.w109-222.abo.wanadoo.fr [109.222.70.169]) by mail.free-electrons.com (Postfix) with ESMTPSA id 87D4F753 for ; Thu, 4 Jul 2013 00:04:50 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Thu, 4 Jul 2013 00:04:48 +0200 Message-Id: <1372889089-3139-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.1.2 Subject: [Buildroot] [PATCH 1/2] lttng-tools: add missing dependency on util-linux for libuuid X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Fixes: http://autobuild.buildroot.org/results/76a/76a91bd139a93f63e17732c9a933664e8e5d3fe1/build-end.log. Signed-off-by: Thomas Petazzoni --- package/lttng-tools/Config.in | 9 ++++++--- package/lttng-tools/lttng-tools.mk | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/package/lttng-tools/Config.in b/package/lttng-tools/Config.in index 6773475..c196e4b 100644 --- a/package/lttng-tools/Config.in +++ b/package/lttng-tools/Config.in @@ -2,9 +2,12 @@ config BR2_PACKAGE_LTTNG_TOOLS bool "lttng-tools" select BR2_PACKAGE_LIBURCU select BR2_PACKAGE_POPT + select BR2_PACKAGE_UTIL_LINUX + select BR2_PACKAGE_UTIL_LINUX_LIBUUID # liburcu only works on some architectures and requires thread support depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_powerpc || BR2_x86_64 depends on BR2_LARGEFILE + depends on BR2_USE_WCHAR # util-linux depends on BR2_TOOLCHAIN_HAS_THREADS help Userspace utilities for the LTTng 2.0 tracing @@ -24,6 +27,6 @@ config BR2_PACKAGE_LTTNG_TOOLS http://lttng.org -comment "lttng-tools needs LARGEFILE and threads support" - depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS - +comment "lttng-tools needs LARGEFILE, threads and wchar support" + depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS || \ + !BR2_USE_WCHAR diff --git a/package/lttng-tools/lttng-tools.mk b/package/lttng-tools/lttng-tools.mk index 2e9f936..d48bc0a 100644 --- a/package/lttng-tools/lttng-tools.mk +++ b/package/lttng-tools/lttng-tools.mk @@ -18,7 +18,7 @@ LTTNG_TOOLS_LICENSE_FILES = LICENSE # Since the 2.1.0 release, lttng-tools depends on flex and bison, # but they are not added to the dependency list since they are # already Buildroot dependencies. -LTTNG_TOOLS_DEPENDENCIES = liburcu popt host-lttng-babeltrace +LTTNG_TOOLS_DEPENDENCIES = liburcu popt host-lttng-babeltrace util-linux LTTNG_AUTORECONF = YES