From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1E6w4B-0000Zz-SO for qemu-devel@nongnu.org; Sun, 21 Aug 2005 16:05:19 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1E6w45-0000WB-2H for qemu-devel@nongnu.org; Sun, 21 Aug 2005 16:05:11 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E6w43-0000UR-O1 for qemu-devel@nongnu.org; Sun, 21 Aug 2005 16:05:07 -0400 Received: from [65.74.133.11] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1E6vxo-0003wP-Es for qemu-devel@nongnu.org; Sun, 21 Aug 2005 15:58:40 -0400 From: Paul Brook Date: Sun, 21 Aug 2005 20:58:09 +0100 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_RzNCDbz3olIi3ae" Message-Id: <200508212058.09726.paul@codesourcery.com> Subject: [Qemu-devel] [patch] Clean documetation Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --Boundary-00=_RzNCDbz3olIi3ae Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline The qemu Makefiles don't remove the generated documentation files. The attached patch adds removal of these files to the 'distclean' rule. Paul --Boundary-00=_RzNCDbz3olIi3ae Content-Type: text/x-diff; charset="us-ascii"; name="patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch" Index: Makefile =================================================================== RCS file: /cvsroot/qemu/qemu/Makefile,v retrieving revision 1.90 diff -u -p -r1.90 Makefile --- Makefile 21 Aug 2005 09:23:39 -0000 1.90 +++ Makefile 21 Aug 2005 19:48:24 -0000 @@ -44,7 +44,7 @@ ifdef CONFIG_KQEMU endif distclean: clean - rm -f config-host.mak config-host.h + rm -f config-host.mak config-host.h $(DOCS) for d in $(TARGET_DIRS); do \ rm -rf $$d || exit 1 ; \ done --Boundary-00=_RzNCDbz3olIi3ae--