aboutsummaryrefslogtreecommitdiffstats
path: root/make-version.pl
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2006-05-31 22:34:21 +0000
committerGerald Combs <gerald@wireshark.org>2006-05-31 22:34:21 +0000
commit8d6c73e567dcc476f6fc1b5a6706fa1688d740b3 (patch)
tree7df4d30a7342f7d724ec2cdfad7d2f7fe3c9a1ed /make-version.pl
parente10e4fb85c39ccbbb5078ab918421217e15551c4 (diff)
More ethereal -> wireshark.
svn path=/trunk/; revision=18292
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 58cb5df4bc..8a9ce17d12 100755
--- a/make-version.pl
+++ b/make-version.pl
@@ -126,8 +126,8 @@ sub update_configure_in
open(CFGIN, "< configure.in") || die "Can't read configure.in!";
while ($line = <CFGIN>) {
- if ($line =~ /^AM_INIT_AUTOMAKE\(ethereal, (\d+)\.(\d+).(\d+)/) {
- $line = "AM_INIT_AUTOMAKE\(ethereal, $1.$2.$3$package_string)\n";
+ if ($line =~ /^AM_INIT_AUTOMAKE\(wireshark, (\d+)\.(\d+).(\d+)/) {
+ $line = "AM_INIT_AUTOMAKE\(wireshark, $1.$2.$3$package_string)\n";
}
$contents .= $line
}