From patchwork Mon May 11 08:49:45 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 22873 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n4B8qc1d012766 for ; Mon, 11 May 2009 08:52:38 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753916AbZEKIwg (ORCPT ); Mon, 11 May 2009 04:52:36 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755202AbZEKIwg (ORCPT ); Mon, 11 May 2009 04:52:36 -0400 Received: from rv-out-0506.google.com ([209.85.198.233]:13052 "EHLO rv-out-0506.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753916AbZEKIwf (ORCPT ); Mon, 11 May 2009 04:52:35 -0400 Received: by rv-out-0506.google.com with SMTP id f9so2074463rvb.1 for ; Mon, 11 May 2009 01:52:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:date:message-id :subject; bh=ZPOy76sfBUHm9Ab5rm4RXfhhnMXDDbWuzCsk0PhAVcY=; b=VFQ0rkDugNBKUEIEVqsLe5I/Y5v7vqG2gfm56hRfSwOU5A8f4oMR06WE05fZOWtRRS WRwebimGhJy+r2gBJrI8/23KugVZW5LYF1fyVm2Z/ELC3+ukg7yv+sIE/p9aiIs1LfjO BJWDelxezRh5jtQbwEtB2UmeomeYJ/ATX4qOg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:subject; b=nIxCZb+Dr1ReGd8LdUxn9ADVccFqu4HR2sFtNbH84LvDBqZz8XCV9sscn9cLX3UAGw 9PzFqYtcszwq5YJWqoeWciQYmfdziS0e3HjxxTgPNEtEMAvVZxN9WaS/f2l2wc6R+uAd 0EZbkNsLOwyIt6X5NZ/sp9KZOXa88NQcSAfTI= Received: by 10.141.49.18 with SMTP id b18mr2844061rvk.96.1242031954903; Mon, 11 May 2009 01:52:34 -0700 (PDT) Received: from rx1.opensource.se (mailhost.igel.co.jp [219.106.231.130]) by mx.google.com with ESMTPS id b8sm10457987rvf.54.2009.05.11.01.52.33 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 11 May 2009 01:52:34 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , lethal@linux-sh.org Date: Mon, 11 May 2009 17:49:45 +0900 Message-Id: <20090511084945.32420.29345.sendpatchset@rx1.opensource.se> Subject: [PATCH] sh: clean vsyscall files Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org From: Magnus Damm Fix so vsyscall-trapa.so and vsyscall.lds get removed with a make distclean. Signed-off-by: Magnus Damm --- arch/sh/Makefile | 1 + arch/sh/kernel/vsyscall/Makefile | 2 ++ 2 files changed, 3 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0001/arch/sh/Makefile +++ work/arch/sh/Makefile 2009-05-11 13:58:05.000000000 +0900 @@ -204,6 +204,7 @@ archprepare: maketools archclean: $(Q)$(MAKE) $(clean)=$(boot) + $(Q)$(MAKE) $(clean)=arch/sh/kernel/vsyscall define archhelp @echo '* zImage - Compressed kernel image' --- 0001/arch/sh/kernel/vsyscall/Makefile +++ work/arch/sh/kernel/vsyscall/Makefile 2009-05-11 13:59:04.000000000 +0900 @@ -34,3 +34,5 @@ SYSCFLAGS_vsyscall-syms.o = -r $(obj)/vsyscall-syms.o: $(src)/vsyscall.lds \ $(obj)/vsyscall-trapa.o $(obj)/vsyscall-note.o FORCE $(call if_changed,syscall) + +MRPROPER_FILES += $(obj)/vsyscall-trapa.so $(obj)/vsyscall.lds