From: Wayne Davison Date: Thu, 12 Oct 2006 03:32:18 +0000 (+0000) Subject: Make sure we tweak the right RSYNC_VERSION line in configure. X-Git-Tag: v2.6.9pre1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=200f2d98db38f46644f2736a305b37892d11491c;p=thirdparty%2Frsync.git Make sure we tweak the right RSYNC_VERSION line in configure. --- diff --git a/packaging/release-rsync b/packaging/release-rsync index 295cd107..f63f3a73 100755 --- a/packaging/release-rsync +++ b/packaging/release-rsync @@ -155,7 +155,7 @@ foreach my $fn (@tweak_files) { undef $/; $_ = ; $/ = "\n"; close IN; if ($fn =~ /configure/) { - s/^RSYNC_VERSION.*/RSYNC_VERSION=$version/m; + s/^RSYNC_VERSION=.*/RSYNC_VERSION=$version/m; } elsif ($fn =~ /\.spec/) { s/^(Version:) .*/$1 $version/m; s/^(Release:) .*/$1 $release/m;