qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [PATCH] make-release: fix mtime for a wider range of gi


From: Bernhard Kohl
Subject: [Qemu-devel] Re: [PATCH] make-release: fix mtime for a wider range of git versions
Date: Mon, 15 Nov 2010 18:03:51 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.15) Gecko/20101027 Fedora/3.0.10-1.fc12 Mnenhy/0.8.3 Thunderbird/3.0.10

Am 15.11.2010 12:48, schrieb Bernhard Kohl:
With the latest git versions, e.g. 1.7.2.3, git still prints out
the tag info in addition to the requested format. So let's simply
fetch the first line from the output.

In addition I use the --pretty option instead of --format which
is not recognized in very old git versions, e.g. 1.5.5.6.

Tested with git versions 1.5.5.6 and 1.7.2.3.

Signed-off-by: Bernhard Kohl<address@hidden>

Sorry, I sent this to the wrong list. Resent to kvm!

Bernhard

---
  kvm/scripts/make-release |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kvm/scripts/make-release b/kvm/scripts/make-release
index 56302c3..2d050fc 100755
--- a/kvm/scripts/make-release
+++ b/kvm/scripts/make-release
@@ -51,7 +51,7 @@ cd "$(dirname "$0")"/../..
  mkdir -p "$(dirname "$tarball")"
  git archive --prefix="$name/" --format=tar "$commit">  "$tarball"

-mtime=`git show --format=%ct "$commit""^{commit}" --`
+mtime=`git show --pretty=format:%ct "$commit""^{commit}" -- | head -n 1`
  tarargs="--owner=root --group=root"

  mkdir -p "$tmpdir/$name"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]