Ticket #11892: portdry.tcl
| File portdry.tcl, 319 bytes (added by gwhitneycom1@…, 5 years ago) |
|---|
| Line | |
|---|---|
| 1 | package provide portdry 1.0 |
| 2 | package require portutil 1.0 |
| 3 | |
| 4 | set com.apple.dry [target_new com.apple.dry dry] |
| 5 | target_provides ${com.apple.dry} dry |
| 6 | target_runtype ${com.apple.dry} "always" |
| 7 | |
| 8 | proc dry {args} { |
| 9 | global UI_PREFIX portname |
| 10 | ui_msg "$UI_PREFIX Processing $portname (doing nothing, dry run)" |
| 11 | return 0 |
| 12 | } |

