Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161607AbbKEGvv (ORCPT ); Thu, 5 Nov 2015 01:51:51 -0500 Received: from szxga03-in.huawei.com ([119.145.14.66]:6792 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161594AbbKEGvr (ORCPT ); Thu, 5 Nov 2015 01:51:47 -0500 From: Yunlong Song To: , , , CC: , , , , , , , , Subject: [PATCH] perf tools: Change FEATURE-DUMP to FEATURE-DUMP.libbpf for lib bpf Date: Thu, 5 Nov 2015 14:56:34 +0800 Message-ID: <1446706594-4142-1-git-send-email-yunlong.song@huawei.com> X-Mailer: git-send-email 1.8.4.5 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.110.52.30] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A090204.563AFC5A.0081,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2013-05-26 15:14:31, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: fb11076f314b80bc0af7e70a21d1ca35 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1556 Lines: 43 Commit ed63f34c026e9a60d17fa750ecdfe3f600d49393 ("perf tools: Make perf depend on libbpf") dynamically creates FEATURE-DUMP.libbpf during the perf building, but the .gitignore under tools/lib/bpf/ mistakes FEATURE-DUMP.libbpf for FEATURE-DUMP. Besides, the Makefile under tools/lib/bpf/ also mistakes FEATURE-DUMP.libbpf for FEATURE-DUMP, which causes that "make clean" will leave (or say create) FEATURE-DUMP.libbpf rather than remove FEATURE-DUMP.libbpf file. Signed-off-by: Yunlong Song --- 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 -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/