From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JoOg9-0003Jx-0W for qemu-devel@nongnu.org; Tue, 22 Apr 2008 16:01:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JoOg7-0003II-Nt for qemu-devel@nongnu.org; Tue, 22 Apr 2008 16:01:24 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JoOg7-0003I2-AN for qemu-devel@nongnu.org; Tue, 22 Apr 2008 16:01:23 -0400 Received: from moutng.kundenserver.de ([212.227.126.187]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JoOg6-0004O4-Kz for qemu-devel@nongnu.org; Tue, 22 Apr 2008 16:01:22 -0400 Message-ID: <480E440F.5020504@mail.berlios.de> Date: Tue, 22 Apr 2008 22:01:19 +0200 From: Stefan Weil MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------030707040108080505090100" Subject: [Qemu-devel] [Qemu][PATCH] Ignore .svn in Makefile Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers This is a multi-part message in MIME format. --------------030707040108080505090100 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Hi, this small patch adds .svn to the ignore list for the tar archive target. I left CVS on the ignore list, too. Would a change from gzip to bzip2 or lzma make sense to get a better compression? Stefan --------------030707040108080505090100 Content-Type: text/x-diff; name="Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.patch" Index: Makefile =================================================================== --- Makefile (revision 4236) +++ Makefile (working copy) @@ -257,7 +257,7 @@ tar: rm -rf /tmp/$(FILE) cp -r . /tmp/$(FILE) - cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS + cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .svn rm -rf /tmp/$(FILE) # generate a binary distribution --------------030707040108080505090100--