From patchwork Wed May 27 00:13:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Mathieu Olivari X-Patchwork-Id: 476875 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 427581402B2 for ; Wed, 27 May 2015 10:13:34 +1000 (AEST) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id D213828147E; Wed, 27 May 2015 02:11:45 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,HTML_MESSAGE, T_RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 8CB8D280632 for ; Wed, 27 May 2015 02:11:38 +0200 (CEST) X-policyd-weight: using cached result; rate:hard: -7.6 Received: from smtp.codeaurora.org (smtp.codeaurora.org [198.145.29.96]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Wed, 27 May 2015 02:11:38 +0200 (CEST) Received: from smtp.codeaurora.org (localhost [127.0.0.1]) by smtp.codeaurora.org (Postfix) with ESMTP id 2903313FB9A; Wed, 27 May 2015 00:13:02 +0000 (UTC) Received: by smtp.codeaurora.org (Postfix, from userid 486) id 0C3A713FB9D; Wed, 27 May 2015 00:13:02 +0000 (UTC) Received: from MATHIEU (qf-scl1nat.qualcomm.com [207.114.132.30]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: mathieu@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 588DE13FB9A; Wed, 27 May 2015 00:13:01 +0000 (UTC) From: "Mathieu Olivari" To: "'Luiz Angelo Daros de Luca'" , , References: <1432675095-7805-1-git-send-email-mathieu@codeaurora.org> In-Reply-To: Date: Tue, 26 May 2015 17:13:00 -0700 Message-ID: <01e401d09811$e4b77a40$ae266ec0$@codeaurora.org> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 15.0 Thread-Index: AQDFDKb8EQNCBE3FMeB1ktQRvoRUcAGk2w7Qn5jjfVA= Content-Language: en-us X-Virus-Scanned: ClamAV using ClamSMTP Cc: openwrt-devel@lists.openwrt.org Subject: Re: [OpenWrt-Devel] [PATCH] perf: replace libelf1 select by a depend X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" It was not merged; it stayed pending without resolution since then, so I figured I’d find an alternative. Thanks, Mathieu From: Luiz Angelo Daros de Luca [mailto:luizluca@gmail.com] Sent: Tuesday, May 26, 2015 3:08 PM To: Mathieu Olivari; nbd@openwrt.org; blogic@openwrt.org Cc: openwrt-devel@lists.openwrt.org Subject: Re: [OpenWrt-Devel] [PATCH] perf: replace libelf1 select by a depend Hi Mathieu, So the elfutils import from packages.git was rejected? Regards, Luiz Angelo, Em ter, 26 de mai de 2015 às 18:18, Mathieu Olivari > escreveu: perf has libelf1 marked as a select, but this package is actually located in packages.git. As such, the dependency is ignored unless libelf1 package has been manually installed previously. To avoid any missing dependency, we'll mark it as a regular depend. This will make sure the dependency check doesn't silently fail. Signed-off-by: Mathieu Olivari > --- package/devel/perf/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.1.4 diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile index b77e29a..e31a693 100644 --- a/package/devel/perf/Makefile +++ b/package/devel/perf/Makefile @@ -19,7 +19,7 @@ include $(INCLUDE_DIR)/package.mk define Package/perf SECTION:=devel CATEGORY:=Development - DEPENDS:= @USE_GLIBC +libelf1 +libdw +libpthread +librt +binutils + DEPENDS:= libelf1 +libdw +libpthread +librt +binutils TITLE:=Linux performance monitoring tool VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE) URL:=http://www.kernel.org