New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79637


Ignore:
Timestamp:
06/21/11 15:41:46 (4 years ago)
Author:
cal@…
Message:

rev-upgrade: Fixed a few typos, removed code I only guessed to be correct but doesn't seem to be

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gsoc11-rev-upgrade/base/src/macports1.0/macports.tcl

    r79636 r79637  
    35643564                    x86_64 {} 
    35653565                    i386 {} 
    3566                     ppc {} 
    3567                     ppc64 {} 
     3566                    # todo: what are the correct string reported by otool -arch all -L for the PPC archs? 
    35683567                    default { 
    35693568                        ui_warn "Unknown architecture $arch" 
     
    35783577            if {1 == [regexp -nocase {^\t([^\s]+) \(compatibility version ([^,]+), current version ([^)]+)\)} $otool_line match file comp_version curr_version]} { 
    35793578                if {$file == [$b path]} { 
    3580                     # This is a self-referencing entry 
     3579                    # library files contain themselves as their first entry in the output of otool -L 
    35813580                    continue; 
    35823581                } 
     
    35913590                                if {$curr_version != $lib_curr_version} { 
    35923591                                    if {$comp_version != $lib_comp_version} { 
    3593                                         ui_warn "Incompatibly library version: Expected $comp_version, but got $lib_comp_version!" 
     3592                                        ui_warn "Incompatible library version of $file: Expected $comp_version, but $lib_comp_version is installed!" 
    35943593                                    } 
    35953594                                } 
     
    36033602                continue; 
    36043603            } 
    3605             ui_warn "unparseable line in otool output: $otool_line" 
     3604            ui_warn "Unparsable line in otool output: $otool_line" 
    36063605        } 
    36073606    } 
Note: See TracChangeset for help on using the changeset viewer.