From 2cc338b9a63c0ede0be55fd1bbf4358dc06137be Mon Sep 17 00:00:00 2001 From: cjwatson <> Date: Sun, 5 Jan 2003 17:54:23 -0800 Subject: [PATCH] [project @ 2003-01-05 17:54:23 by cjwatson] Make the versioning stuff at least compile ... --- scripts/process.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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= ''; -- 2.39.5