From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eEAwF-0004UV-0f for qemu-devel@nongnu.org; Mon, 13 Nov 2017 04:21:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eEAwB-0006rZ-Sy for qemu-devel@nongnu.org; Mon, 13 Nov 2017 04:21:55 -0500 From: Thomas Huth Date: Mon, 13 Nov 2017 10:21:45 +0100 Message-Id: <1510564905-6185-1-git-send-email-thuth@redhat.com> Subject: [Qemu-devel] [PATCH] scripts/make-release: No need to delete pixman/.git anymore List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Michael Roth , kraxel@redhat.com, Peter Maydell , qemu-trivial@nongnu.org The pixman submodule has been removed in commit c12b6d70e384c769ca372e1, so there is no need anymore to delete pixman/.git while building a release tarball. Signed-off-by: Thomas Huth --- scripts/make-release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-release b/scripts/make-release index fa6323f..70367ab 100755 --- a/scripts/make-release +++ b/scripts/make-release @@ -19,7 +19,7 @@ pushd ${destination} git checkout "v${version}" git submodule update --init (cd roms/seabios && git describe --tags --long --dirty > .version) -rm -rf .git roms/*/.git dtc/.git pixman/.git +rm -rf .git roms/*/.git dtc/.git popd tar cfj ${destination}.tar.bz2 ${destination} rm -rf ${destination} -- 1.8.3.1