Changeset 229 for trunk/base


Ignore:
Timestamp:
Aug 21, 2002, 8:18:25 AM (22 years ago)
Author:
landonf (Landon Fuller)
Message:

Fix namespace collission. This is not a permanent fix

Location:
trunk/base/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/base/src/darwinports1.0/darwinports.tcl

    r214 r229  
    99set uniqid 0
    1010
    11 proc init {args} {
     11proc dportinit {args} {
    1212    global auto_path env bootstrap_options sysportpath portconf
    1313
     
    4444}
    4545
    46 proc build {portdir chain target {options ""}} {
     46proc dportbuild {portdir chain target {options ""}} {
    4747    global targets portpath portinterp_options uniqid
    4848
     
    5252        set workername workername[incr uniqid]
    5353        interp create $workername
    54         $workername alias build build
     54        $workername alias dportbuild dportbuild
    5555
    5656        foreach opt $portinterp_options {
  • trunk/base/src/port1.0/portutil.tcl

    r224 r229  
    115115    }
    116116    puts "Executing $portname"
    117     build $sysportpath/software/$portname build build
     117    dportbuild $sysportpath/software/$portname build build
    118118    return 0
    119119}
  • trunk/base/src/portbuild/portbuild.tcl

    r214 r229  
    3838        }
    3939}
    40 init
     40dportinit
    4141if [info exists options] {
    42     build $portdir build $target $options
     42    dportbuild $portdir build $target $options
    4343} else {
    44     build $portdir build $target
     44    dportbuild $portdir build $target
    4545}
Note: See TracChangeset for help on using the changeset viewer.