From patchwork Fri Mar 14 16:45:21 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cole Robinson X-Patchwork-Id: 330388 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 969922C00B8 for ; Sat, 15 Mar 2014 03:46:11 +1100 (EST) Received: from localhost ([::1]:45967 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WOVFJ-0001Sd-EG for incoming@patchwork.ozlabs.org; Fri, 14 Mar 2014 12:46:09 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WOVEr-00010S-P6 for qemu-devel@nongnu.org; Fri, 14 Mar 2014 12:45:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WOVEk-0001vK-RI for qemu-devel@nongnu.org; Fri, 14 Mar 2014 12:45:41 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37365) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WOVEk-0001v5-IO; Fri, 14 Mar 2014 12:45:34 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s2EGjVgJ011954 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 14 Mar 2014 12:45:31 -0400 Received: from colepc.home.com (ovpn-113-49.phx2.redhat.com [10.3.113.49]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s2EGjSem019281; Fri, 14 Mar 2014 12:45:30 -0400 From: Cole Robinson To: qemu-devel@nongnu.org Date: Fri, 14 Mar 2014 12:45:21 -0400 Message-Id: <7bd1da678bd39335a69894433070611baf7c2968.1394815484.git.crobinso@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: qemu-trivial , Peter Maydell , Anthony Liguori , Cole Robinson Subject: [Qemu-devel] [PATCH for-2.0] scripts/make-release: Don't distribute .git directories X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org [crobinso@localhost qemu-2.0.0-rc0]$ find . -name .git ./dtc/.git ./pixman/.git This is already done for the rom submodules. https://bugs.launchpad.net/qemu/+bug/1224414 Signed-off-by: Cole Robinson --- scripts/make-release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-release b/scripts/make-release index 196c755..cb7c2da 100755 --- a/scripts/make-release +++ b/scripts/make-release @@ -18,7 +18,7 @@ git clone "${src}" ${destination} pushd ${destination} git checkout "v${version}" git submodule update --init -rm -rf .git roms/*/.git +rm -rf .git roms/*/.git dtc/.git pixman/*.git popd tar cfj ${destination}.tar.bz2 ${destination} rm -rf ${destination}