Skip to content
  • Dan McGee's avatar
    vercmp: ensure 2.0a and 2.0.a do not compare equal · 30d978a9
    Dan McGee authored
    
    
    We had this interesting set of facts conundrum, according to vercmp
    return values:
        2.0a <  2.0
        2.0  <  2.0.a
        2.0a == 2.0.a
    
    This introduces a code change that ensures '2.0a < 2.0.a' as would be
    expected by the first two comparisons. Unfortunately this stays us a bit
    further from upstream RPM code, but those are the breaks (in RPM, the
    versions involving 'a' do in fact compare the same, but they are both
    greater than the bare '2.0').
    
    Signed-off-by: default avatarDan McGee <dan@archlinux.org>
    30d978a9