Ticket #11892: portdry.tcl

File portdry.tcl, 319 bytes (added by gwhitneycom1@…, 17 years ago)

new file portdry.tcl which needs to be added to port1.0 directory for this patch

Line 
1package provide portdry 1.0
2package require portutil 1.0
3
4set com.apple.dry [target_new com.apple.dry dry]
5target_provides ${com.apple.dry} dry
6target_runtype ${com.apple.dry} "always"
7
8proc dry {args} {
9    global UI_PREFIX portname
10    ui_msg "$UI_PREFIX Processing $portname (doing nothing, dry run)"
11    return 0
12}