[BACK]Return to pkg-config CVS log [TXT][DIR] Up to [local] / src / usr.bin / pkg-config

Diff for /src/usr.bin/pkg-config/pkg-config between version 1.81 and 1.82

version 1.81, 2014/07/09 23:03:51 version 1.82, 2014/07/10 08:20:13
Line 637 
Line 637 
                 $suffix_b[1] = $2;                  $suffix_b[1] = $2;
         }          }
   
           # The above are standard suffixes; deal with single alphabetical
           # suffixes too, e.g. 1.0.1h
           if ($a =~ s/([a-zA-Z]){1}$//) {
               say_debug("valid suffix $1 found in $a$1.");
               $suffix_a[0] = $1;
           }
   
           if ($b =~ s/([a-zA-Z]){1}$//) {
               say_debug("valid suffix $1 found in $b$1.");
               $suffix_b[0] = $1;
           }
   
         my @a = split(/\./, $a);          my @a = split(/\./, $a);
         my @b = split(/\./, $b);          my @b = split(/\./, $b);
   

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82