From: Avi Kivity <[email protected]> For releases, we should display the release name, not kvm-devel.
Signed-off-by: Avi Kivity <[email protected]> diff --git a/scripts/make-release b/scripts/make-release index 09b4ba3..e8092e9 100755 --- a/scripts/make-release +++ b/scripts/make-release @@ -64,7 +64,13 @@ git --git-dir="$linux_git" --work-tree="$tmpdir/$name/linux-2.6" \ cd "$tmpdir/$name" -./sync "$name" +if [[ -z "$formal" ]]; then + version="kvm-devel" +else + version="$name" +fi + +./sync "$name" -v "$version" rm -rf "$tmpdir/$name/linux-2.6" -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
