Ticket #31702: patch-src-symlink.in.diff
File patch-src-symlink.in.diff, 1.2 KB (added by gauravb7090@…, 11 years ago) |
---|
-
src/macports1.0/macports.tcl
1273 1273 $workername alias mport_lookup mportlookup 1274 1274 $workername alias mport_info mportinfo 1275 1275 $workername alias set_phase set_phase 1276 $workername alias mport_select mportselect 1276 1277 1277 1278 # instantiate the UI call-backs 1278 1279 foreach priority $macports::ui_priorities { -
src/port1.0/portuninstall.tcl
57 57 } 58 58 59 59 proc portuninstall::uninstall_main {args} { 60 global subport version revision portvariants user_options 60 global subport version revision portvariants user_options select.group select.file 61 61 registry_uninstall $subport $version $revision $portvariants [array get user_options] 62 63 if {[info exists select.group] && [info exists select.file] } { 64 if {[mport_select show ${select.group}] eq ${select.file} } { 65 mport_select set ${select.group} "none" 66 } 67 } 68 62 69 return 0 63 70 }