Changeset 20559

Show
Ignore:
Timestamp:
07/15/07 14:35:34 (1 year ago)
Author:
patrick
Message:

MFT r20558: Fixed a logic error that would result in a flagpoll version test

such as 1.2.3 ≥ 1.1.4 failing.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/branches/2.2/external/macros/gmtl.m4

    r19450 r20559  
    8282      else  
    8383        if test "$fp_major" -eq "$req_fp_major"; then 
    84             if test "$fp_minor" -ge "$req_fp_minor"; then 
     84            if test "$fp_minor" -gt "$req_fp_minor"; then 
     85               ok='yes' 
     86            elif test "$fp_minor" -ge "$req_fp_minor"; then 
    8587               if test "$fp_micro" -ge "$req_fp_micro"; then 
    8688                  ok='yes'