aboutsummaryrefslogtreecommitdiffstats
path: root/make-version.pl
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-01-29 11:53:04 -0800
committerGerald Combs <gerald@wireshark.org>2014-01-29 11:53:04 -0800
commit82c5bfd6f10186ae432198c276345ea415095ab5 (patch)
tree18bee26d90fef1ce2b29d1b4bb2cef30e4870ce0 /make-version.pl
parent5982c6179b2fcd2ba889533d43d3313a67723e43 (diff)
We have a usable tag now. There's no need to fake a version number.
Diffstat (limited to 'make-version.pl')
-rwxr-xr-xmake-version.pl10
1 files changed, 2 insertions, 8 deletions
diff --git a/make-version.pl b/make-version.pl
index 9c0cd25769..6b68be4821 100755
--- a/make-version.pl
+++ b/make-version.pl
@@ -183,15 +183,9 @@ sub read_repo_info {
$repo_path = basename($line);
}
-
- # XXX After the SVN->git migration we'll create tags for 1.11.x.
- # Until then we'll fake it.
- #chomp($line = qx{git describe --tags --dirty});
- chomp($line = qx{git rev-parse --short HEAD});
+ chomp($line = qx{git describe --dirty --match "v*"});
if (defined($line)) {
- #$git_description = $line;
- $git_description = "wireshark-1.11." . $version_pref{"version_minor"} .
- "-$revision-g$line";
+ $git_description = "wireshark-" . substr($line, 1);
}
1;