From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1MjtWo-0006gc-OC for mharc-grub-devel@gnu.org; Sat, 05 Sep 2009 07:33:58 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MjtWe-0006ev-QD for grub-devel@gnu.org; Sat, 05 Sep 2009 07:33:49 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MjtWX-0006dc-VE for grub-devel@gnu.org; Sat, 05 Sep 2009 07:33:47 -0400 Received: from [199.232.76.173] (port=53618 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MjtWV-0006dV-RY for grub-devel@gnu.org; Sat, 05 Sep 2009 07:33:40 -0400 Received: from smtp4-g21.free.fr ([212.27.42.4]:44189) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MjtWU-0008DU-Q6 for grub-devel@gnu.org; Sat, 05 Sep 2009 07:33:39 -0400 Received: from smtp4-g21.free.fr (localhost [127.0.0.1]) by smtp4-g21.free.fr (Postfix) with ESMTP id 570F44C813C for ; Sat, 5 Sep 2009 13:33:33 +0200 (CEST) Received: from yves.zetam.org (mar06-2-88-175-100-234.fbx.proxad.net [88.175.100.234]) by smtp4-g21.free.fr (Postfix) with ESMTP id 58B014C8108 for ; Sat, 5 Sep 2009 13:33:31 +0200 (CEST) Received: from [192.168.1.2] (localhost [127.0.0.1]) by yves.zetam.org (Postfix) with ESMTP id 0820B7DD1D9 for ; Sat, 5 Sep 2009 13:33:33 +0200 (CEST) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=MIMEBOUNDARY To: grub-devel@gnu.org From: Yves Blusseau Date: Sat, 05 Sep 2009 13:33:32 +0200 Message-ID: <20090905113332.17509.16781.stgit@localhost> User-Agent: StGit/0.15-rc1-15-g26e3 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: [PATCH] Fix maintainer-clean rule X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Sep 2009 11:33:51 -0000 This is a MIME message. --MIMEBOUNDARY Content-Disposition: inline MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit ChangeLog: 2009-09-05 Yves Blusseau * Makefile.in (RMKFILES): add i386-qemu.rmk (MAINTAINER_CLEANFILES): add $(srcdir)/DISTLIST $(srcdir)/config.h.in $(srcdir)/stamp-h.in --- ChangeLog | 6 ++++++ Makefile.in | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) --MIMEBOUNDARY Content-Disposition: attachment; filename=fix-maintainer-clean.patch MIME-Version: 1.0 Content-Type: text/plain; name=fix-maintainer-clean.patch; charset="utf-8" Content-Transfer-Encoding: 7bit diff --git a/ChangeLog b/ChangeLog index 7d4946b..c48456c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-09-05 Yves Blusseau + + * Makefile.in (RMKFILES): add i386-qemu.rmk + (MAINTAINER_CLEANFILES): add $(srcdir)/DISTLIST $(srcdir)/config.h.in + $(srcdir)/stamp-h.in + 2009-09-04 Vladimir Serbinenko * loader/i386/xnu.c (grub_cpu_xnu_fill_devicetree): Remove diff --git a/Makefile.in b/Makefile.in index 3af1266..ff84afb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -111,7 +111,7 @@ enable_efiemu = @enable_efiemu@ ### General variables. RMKFILES = $(addprefix conf/,common.rmk i386-coreboot.rmk i386-efi.rmk \ - i386-ieee1275.rmk i386-pc.rmk i386.rmk powerpc-ieee1275.rmk \ + i386-qemu.rmk i386-ieee1275.rmk i386-pc.rmk i386.rmk powerpc-ieee1275.rmk \ sparc64-ieee1275.rmk x86_64-efi.rmk) MKFILES = $(patsubst %.rmk,%.mk,$(RMKFILES)) @@ -128,7 +128,8 @@ MOSTLYCLEANFILES = DISTCLEANFILES = config.status config.cache config.log config.h \ Makefile stamp-h include/grub/cpu include/grub/machine \ gensymlist.sh genkernsyms.sh build_env.mk -MAINTAINER_CLEANFILES = $(srcdir)/configure $(addprefix $(srcdir)/,$(MKFILES)) +MAINTAINER_CLEANFILES = $(srcdir)/configure $(addprefix $(srcdir)/,$(MKFILES)) \ + $(srcdir)/DISTLIST $(srcdir)/config.h.in $(srcdir)/stamp-h.in # The default target. all: all-local --MIMEBOUNDARY--