From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758375AbbKHHbE (ORCPT ); Sun, 8 Nov 2015 02:31:04 -0500 Received: from terminus.zytor.com ([198.137.202.10]:46021 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754721AbbKHHa6 (ORCPT ); Sun, 8 Nov 2015 02:30:58 -0500 Date: Sat, 7 Nov 2015 23:30:27 -0800 From: tip-bot for Yunlong Song Message-ID: Cc: adrian.hunter@intel.com, yunlong.song@huawei.com, a.p.zijlstra@chello.nl, tglx@linutronix.de, paulus@samba.org, kan.liang@intel.com, mingo@kernel.org, dsahern@gmail.com, wangnan0@huawei.com, hpa@zytor.com, acme@redhat.com, namhyung@kernel.org, masami.hiramatsu.pt@hitachi.com, ast@kernel.org, linux-kernel@vger.kernel.org, jolsa@kernel.org Reply-To: tglx@linutronix.de, kan.liang@intel.com, paulus@samba.org, mingo@kernel.org, dsahern@gmail.com, adrian.hunter@intel.com, a.p.zijlstra@chello.nl, yunlong.song@huawei.com, linux-kernel@vger.kernel.org, ast@kernel.org, jolsa@kernel.org, wangnan0@huawei.com, hpa@zytor.com, acme@redhat.com, masami.hiramatsu.pt@hitachi.com, namhyung@kernel.org In-Reply-To: <1446706594-4142-1-git-send-email-yunlong.song@huawei.com> References: <1446706594-4142-1-git-send-email-yunlong.song@huawei.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/urgent] tools lib bpf: Change FEATURE-DUMP to FEATURE-DUMP.libbpf Git-Commit-ID: 0c77c04aa9c2b3a154f5cb0559feaee3fb7a6935 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: 0c77c04aa9c2b3a154f5cb0559feaee3fb7a6935 Gitweb: http://git.kernel.org/tip/0c77c04aa9c2b3a154f5cb0559feaee3fb7a6935 Author: Yunlong Song AuthorDate: Thu, 5 Nov 2015 14:56:34 +0800 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 5 Nov 2015 12:47:51 -0300 tools lib bpf: Change FEATURE-DUMP to FEATURE-DUMP.libbpf Commit ed63f34c026e9a60d17fa750ecdfe3f600d49393 ("perf tools: Make perf depend on libbpf") triggers the build of libbpf when building the perf tools, dynamically creating FEATURE-DUMP.libbpf. It failed to update the tools/lib/bpf/.gitignore file to have that prefix, fix it. Signed-off-by: Yunlong Song Cc: Adrian Hunter Cc: Alexei Starovoitov Cc: David Ahern Cc: Jiri Olsa Cc: Kan Liang Cc: Masami Hiramatsu Cc: Namhyung Kim Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Wang Nan Fixes: 65f041bee783 ("tools lib bpf: Use FEATURE_USER to allow building in the same dir as perf") Link: http://lkml.kernel.org/r/1446706594-4142-1-git-send-email-yunlong.song@huawei.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/lib/bpf/.gitignore | 2 +- tools/lib/bpf/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/lib/bpf/.gitignore b/tools/lib/bpf/.gitignore index 812aeed..f81e549 100644 --- a/tools/lib/bpf/.gitignore +++ b/tools/lib/bpf/.gitignore @@ -1,2 +1,2 @@ libbpf_version.h -FEATURE-DUMP +FEATURE-DUMP.libbpf diff --git a/tools/lib/bpf/Makefile b/tools/lib/bpf/Makefile index fc9af57..a3caaf3 100644 --- a/tools/lib/bpf/Makefile +++ b/tools/lib/bpf/Makefile @@ -180,7 +180,7 @@ config-clean: clean: $(call QUIET_CLEAN, libbpf) $(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES) .*.d \ $(RM) LIBBPF-CFLAGS - $(call QUIET_CLEAN, core-gen) $(RM) $(OUTPUT)FEATURE-DUMP + $(call QUIET_CLEAN, core-gen) $(RM) $(OUTPUT)FEATURE-DUMP.libbpf