# HG changeset patch
# User Sean Farley <sean@mcs.anl.gov>
# Date 1332961259 18000
# Node ID 90e8ddbc29ba190e66262274720ed29416d7f325
# Parent 866e0583954b414712173996926e79b1b4cd3a9f
base: add ui_msg to output outdated ports during selfupdate
diff --git a/base/src/macports1.0/macports.tcl b/base/src/macports1.0/macports.tcl
a
|
b
|
|
3346 | 3346 | ui_msg "Not all sources could be fully synced using the old version of MacPorts." |
3347 | 3347 | ui_msg "Please run selfupdate again now that MacPorts base has been updated." |
3348 | 3348 | } else { |
3349 | 3349 | ui_msg "\nThe ports tree has been updated. To upgrade your installed ports, you should run" |
3350 | 3350 | ui_msg " port upgrade outdated" |
| 3351 | set outdated [exec port outdated] |
| 3352 | ui_msg "\n$outdated" |
3351 | 3353 | } |
3352 | 3354 | } |
3353 | 3355 | |
3354 | 3356 | return 0 |
3355 | 3357 | } |