From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751924AbdH2V0a (ORCPT ); Tue, 29 Aug 2017 17:26:30 -0400 Received: from terminus.zytor.com ([65.50.211.136]:50481 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751708AbdH2V02 (ORCPT ); Tue, 29 Aug 2017 17:26:28 -0400 Date: Tue, 29 Aug 2017 14:24:18 -0700 From: tip-bot for David Carrillo-Cisneros Message-ID: Cc: acme@redhat.com, mingo@kernel.org, eranian@google.com, hpa@zytor.com, davidcc@google.com, linux-kernel@vger.kernel.org, pjt@google.com, tglx@linutronix.de, alexander.shishkin@linux.intel.com, jolsa@kernel.org Reply-To: jolsa@kernel.org, alexander.shishkin@linux.intel.com, tglx@linutronix.de, linux-kernel@vger.kernel.org, davidcc@google.com, pjt@google.com, eranian@google.com, hpa@zytor.com, mingo@kernel.org, acme@redhat.com In-Reply-To: <20170827075442.108534-7-davidcc@google.com> References: <20170827075442.108534-7-davidcc@google.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tools: Pass full path of FEATURES_DUMP Git-Commit-ID: 70ff7c6caa2f2cee4a7621f5cb3b73b0a38327f1 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 70ff7c6caa2f2cee4a7621f5cb3b73b0a38327f1 Gitweb: http://git.kernel.org/tip/70ff7c6caa2f2cee4a7621f5cb3b73b0a38327f1 Author: David Carrillo-Cisneros AuthorDate: Sun, 27 Aug 2017 00:54:42 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 28 Aug 2017 16:44:46 -0300 perf tools: Pass full path of FEATURES_DUMP When building with an external FEATURES_DUMP, bpf complains that features dump file is not found. Fix it by passing full file path. Signed-off-by: David Carrillo-Cisneros Acked-by: Jiri Olsa Cc: Alexander Shishkin Cc: Paul Turner Cc: Stephane Eranian Link: http://lkml.kernel.org/r/20170827075442.108534-7-davidcc@google.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Makefile.perf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 58924eb..a5bf310 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -240,7 +240,7 @@ endif ifeq ($(FEATURES_DUMP),) FEATURE_DUMP_EXPORT := $(realpath $(OUTPUT)FEATURE-DUMP) else -FEATURE_DUMP_EXPORT := $(FEATURES_DUMP) +FEATURE_DUMP_EXPORT := $(realpath $(FEATURES_DUMP)) endif export prefix bindir sharedir sysconfdir DESTDIR