From: cjwatson <> Date: Mon, 6 Jan 2003 01:54:23 +0000 (-0800) Subject: [project @ 2003-01-05 17:54:23 by cjwatson] X-Git-Tag: release/2.6.0~968 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2cc338b9a63c0ede0be55fd1bbf4358dc06137be;p=debbugs.git [project @ 2003-01-05 17:54:23 by cjwatson] Make the versioning stuff at least compile ... --- diff --git a/scripts/process.in b/scripts/process.in index 8d9d2827..ddc85e4e 100755 --- a/scripts/process.in +++ b/scripts/process.in @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: process.in,v 1.57 2002/11/17 22:45:16 cjwatson Exp $ +# $Id: process.in,v 1.58 2003/01/05 17:54:23 cjwatson Exp $ # # Usage: process nn # Temps: incoming/Pnn @@ -504,14 +504,14 @@ END $s_versions= ''; if (defined($pheader{'version'})) { $s_versions = $pheader{'version'}; - $s_versions ~= s/\s+/ /; + $s_versions =~ s/\s+/ /; # BUG: need to bounce unknown versions back to submitter here } $s_fixed_versions= ''; if (defined($pheader{'fixed-in-version'})) { $s_fixed_versions = $pheader{'fixed-in-version'}; - $s_fixed_versions ~= s/\s+/ /; + $s_fixed_versions =~ s/\s+/ /; } $s_keywords= '';