]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2003-01-05 17:54:23 by cjwatson]
authorcjwatson <>
Mon, 6 Jan 2003 01:54:23 +0000 (17:54 -0800)
committercjwatson <>
Mon, 6 Jan 2003 01:54:23 +0000 (17:54 -0800)
Make the versioning stuff at least compile ...

scripts/process.in

index 8d9d282713bc0b4b78648b8716d145d53bec09b7..ddc85e4edf6413e391de684a91feac8a4c8f63aa 100755 (executable)
@@ -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= '';