Ticket #15395: patch-portfetch.tcl.diff
File patch-portfetch.tcl.diff, 851 bytes (added by wsiegrist@…, 16 years ago) |
---|
-
src/port1.0/portfetch.tcl
624 624 625 625 # Initialize fetch target and call checkfiles. 626 626 proc fetch_init {args} { 627 global distfiles distname distpath all_dist_files dist_subdir fetch.type fetch_init_done 627 global distfiles distname distpath all_dist_files dist_subdir fetch.type fetch_init_done categories 628 628 629 629 if {[info exists distpath] && [info exists dist_subdir] && ![info exists fetch_init_done]} { 630 set distpath ${distpath}/${dist_subdir} 631 set fetch_init_done yes 630 set primary_category [lindex $categories 0] 631 set distpath ${distpath}/${primary_category}/${dist_subdir} 632 set fetch_init_done yes 632 633 } 633 634 checkfiles 634 635 }