svn commit: r214813 - user/dougb/portmaster

Doug Barton dougb at FreeBSD.org
Thu Nov 4 22:05:51 UTC 2010


Author: dougb
Date: Thu Nov  4 22:05:50 2010
New Revision: 214813
URL: http://svn.freebsd.org/changeset/base/214813

Log:
  Only print the fast-resume message if we're building. Otherwise we might
  not know all the ports that need updating.

Modified:
  user/dougb/portmaster/portmaster

Modified: user/dougb/portmaster/portmaster
==============================================================================
--- user/dougb/portmaster/portmaster	Thu Nov  4 21:50:19 2010	(r214812)
+++ user/dougb/portmaster/portmaster	Thu Nov  4 22:05:50 2010	(r214813)
@@ -212,7 +212,7 @@ parent_exit () {
 	fi
 
 	PM_NEEDS_UPDATE=${PM_NEEDS_UPDATE# }
-	if [ -n "$1" -a -n "$PM_NEEDS_UPDATE" ]; then
+	if [ -n "$1" -a -n "$PM_NEEDS_UPDATE" -a -n "$PM_BUILDING" ]; then
 		echo ''
 		echo "===>>> You can restart from the point of failure with this command line:"
 		echo "       ${0##*/} <flags> $PM_NEEDS_UPDATE"


More information about the svn-src-user mailing list