From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753966AbbCaMjY (ORCPT ); Tue, 31 Mar 2015 08:39:24 -0400 Received: from terminus.zytor.com ([198.137.202.10]:57344 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753794AbbCaMjT (ORCPT ); Tue, 31 Mar 2015 08:39:19 -0400 Date: Tue, 31 Mar 2015 05:39:04 -0700 From: tip-bot for Andy Lutomirski Message-ID: Cc: damm+renesas@opensource.se, hpa@zytor.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, luto@kernel.org, mingo@kernel.org Reply-To: luto@kernel.org, tglx@linutronix.de, mingo@kernel.org, damm+renesas@opensource.se, hpa@zytor.com, linux-kernel@vger.kernel.org In-Reply-To: <7fa2ad4a63bc6f52e214125900d54165ef06cc10.1427482099.git.luto@kernel.org> References: <7fa2ad4a63bc6f52e214125900d54165ef06cc10.1427482099.git.luto@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/vdso] x86/vdso: Remove x32 intermediates during ' make clean' Git-Commit-ID: 115db5c68bd4ed7fbcb73f300e666ff127b359b6 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: 115db5c68bd4ed7fbcb73f300e666ff127b359b6 Gitweb: http://git.kernel.org/tip/115db5c68bd4ed7fbcb73f300e666ff127b359b6 Author: Andy Lutomirski AuthorDate: Fri, 27 Mar 2015 11:48:19 -0700 Committer: Ingo Molnar CommitDate: Tue, 31 Mar 2015 10:45:15 +0200 x86/vdso: Remove x32 intermediates during 'make clean' The existing clean-files rule was missing vdsox32.so and vdsox32.so.dbg. We should really rename the intermediates to allow a single rule to get them all. Also-reported-by: Magnus Damm Signed-off-by: Andy Lutomirski Link: http://lkml.kernel.org/r/7fa2ad4a63bc6f52e214125900d54165ef06cc10.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 bea2f74..275a3a8 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* vdso-image-*.c +clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* vdso-image-*.c vdsox32.so*