Changeset 20558

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

Fixed a logic error that would result in a test such as 1.2.3 ≥ 1.1.4
failing.

Files:

Legend:

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

    r19450 r20558  
    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'