aboutsummaryrefslogtreecommitdiffstats
path: root/make-version.pl
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2016-06-08 09:15:24 -0700
committerGerald Combs <gerald@wireshark.org>2016-06-08 17:40:32 +0000
commit87c8be266c56a51023f04f8479025d8e4d4319e4 (patch)
tree1f09dc9bc0c6f3b6a090c250a76d8aac248b166a /make-version.pl
parentfec1061ce013cd4db451953f846e1c50231e0cbe (diff)
Switch some AsciiDoc replacements to attributes.
Many of our AsciiDoc "macros" are simple string replacements. Start converting them to attributes. Update the release notes. Change-Id: I23d9ffd311f13a34c16cde3b4898b7f7bb8ba638 Reviewed-on: https://code.wireshark.org/review/15778 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'make-version.pl')
-rwxr-xr-xmake-version.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/make-version.pl b/make-version.pl
index c392116596..b6e54265cf 100755
--- a/make-version.pl
+++ b/make-version.pl
@@ -512,8 +512,8 @@ sub update_release_notes
while ($line = <ADOC_CONF>) {
# wireshark-version:\[\]=1.9.1
- if ($line =~ /^wireshark-version:\\\[\\\]=.*([\r\n]+)$/) {
- $line = sprintf("wireshark-version:\\\[\\\]=%d.%d.%d$1",
+ if ($line =~ /^wireshark-version=.*([\r\n]+)$/) {
+ $line = sprintf("wireshark-version=%d.%d.%d$1",
$version_pref{"version_major"},
$version_pref{"version_minor"},
$version_pref{"version_micro"},