Changeset 68749 for trunk/base


Ignore:
Timestamp:
Jun 12, 2010, 11:46:10 AM (14 years ago)
Author:
jmr@…
Message:

switch remaining instances of running install target to activate

Location:
trunk/base
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/base/portmgr/packaging/dpkgall.tcl

    r64641 r68749  
    691691
    692692        foreach port [get_required_ports] {
    693                 if {[catch {do_portexec $port [array get options] [array get variants] install} result]} {
     693                if {[catch {do_portexec $port [array get options] [array get variants] activate} result]} {
    694694                        global errorInfo
    695695                        ui_debug "$errorInfo"
     
    746746        }
    747747
    748         if {[catch {set result [mportexec $workername install]} result] || $result == 1} {
     748        if {[catch {set result [mportexec $workername $target]} result] || $result == 1} {
    749749
    750750                # Close the port
  • trunk/base/portmgr/packaging/rpmall.tcl

    r51780 r68749  
    458458                                exit 1
    459459                        }
    460                         if {[catch {set result [mportexec $workername install]} result] ||
     460                        if {[catch {set result [mportexec $workername activate]} result] ||
    461461                                $result == 1} {
    462462                                global errorInfo
  • trunk/base/src/macports1.0/macports.tcl

    r68746 r68749  
    16161616            set result [dlist_eval $dlist _mportactive [list _mportexec "activate"]]
    16171617        } else {
    1618             set result [dlist_eval $dlist _mportinstalled [list _mportexec "install"]]
     1618            set result [dlist_eval $dlist _mportinstalled [list _mportexec "activate"]]
    16191619        }
    16201620
Note: See TracChangeset for help on using the changeset viewer.