From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753867AbbCaMjB (ORCPT ); Tue, 31 Mar 2015 08:39:01 -0400 Received: from terminus.zytor.com ([198.137.202.10]:57330 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753775AbbCaMi6 (ORCPT ); Tue, 31 Mar 2015 08:38:58 -0400 Date: Tue, 31 Mar 2015 05:38:47 -0700 From: tip-bot for Andrey Skvortsov Message-ID: Cc: luto@kernel.org, hpa@zytor.com, mingo@kernel.org, tglx@linutronix.de, andrej.skvortzov@gmail.com, linux-kernel@vger.kernel.org Reply-To: mingo@kernel.org, tglx@linutronix.de, andrej.skvortzov@gmail.com, linux-kernel@vger.kernel.org, luto@kernel.org, hpa@zytor.com In-Reply-To: References: To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/vdso] x86/vdso: Teach 'make clean' to remove generated vdso-image-*.c files Git-Commit-ID: ef37507d99ab29c253de3c55e7ee9fa4f6d50834 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: ef37507d99ab29c253de3c55e7ee9fa4f6d50834 Gitweb: http://git.kernel.org/tip/ef37507d99ab29c253de3c55e7ee9fa4f6d50834 Author: Andrey Skvortsov AuthorDate: Fri, 27 Mar 2015 11:48:18 -0700 Committer: Ingo Molnar CommitDate: Tue, 31 Mar 2015 10:45:15 +0200 x86/vdso: Teach 'make clean' to remove generated vdso-image-*.c files After 'make clean' the following files were left in arch/x86/vdso/: vdso-image-32-int80.c vdso-image-32-syscall.c vdso-image-32-sysenter.c These file are generated during the build process and are present in .gitignore, so remove them. Signed-off-by: Andrey Skvortsov Signed-off-by: Andy Lutomirski Link: http://lkml.kernel.org/r/f85bb7ef6f8c6f6aa4bf422348018c84321454f8.1427482099.git.luto@kernel.org Signed-off-by: Ingo Molnar --- arch/x86/vdso/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile index e07e52a..bea2f74 100644 --- a/arch/x86/vdso/Makefile +++ b/arch/x86/vdso/Makefile @@ -206,4 +206,4 @@ $(vdso_img_insttargets): install_%: $(obj)/%.dbg $(MODLIB)/vdso FORCE PHONY += vdso_install $(vdso_img_insttargets) vdso_install: $(vdso_img_insttargets) FORCE -clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* +clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* vdso-image-*.c