svn commit: r238654 - user/dougb/portmaster

Doug Barton dougb at FreeBSD.org
Fri Jul 20 08:36:54 UTC 2012


Author: dougb
Date: Fri Jul 20 08:36:53 2012
New Revision: 238654
URL: http://svn.freebsd.org/changeset/base/238654

Log:
  Bug fix: Do read_distinfos() in the background for multiport() too, oops
  
  Update the comment re read_distinfos() in the single port code to reflect
  current reality

Modified:
  user/dougb/portmaster/portmaster

Modified: user/dougb/portmaster/portmaster
==============================================================================
--- user/dougb/portmaster/portmaster	Fri Jul 20 08:33:23 2012	(r238653)
+++ user/dougb/portmaster/portmaster	Fri Jul 20 08:36:53 2012	(r238654)
@@ -2834,6 +2834,8 @@ multiport () {
 	fi
 	unset portlist
 
+	[ -n "$DI_FILES" ] && (read_distinfos)&
+
 	# First Pass
 	if [ -n "$PM_BUILD_ONLY_LIST" ]; then
 		PM_BUILD_ONLY_LIST=pmp_doing_build_deps
@@ -3302,7 +3304,7 @@ fi
 
 # Do these things first time through
 if [ -z "$PM_INDEX_ONLY" -a -z "$PM_BUILDING" -a -z "$SHOW_WORK" -a -z "$NO_ACTION" ]; then
-	# Do not start this in the background until we are sure we are going to build
+	# Do not start this in the background until we are sure we are going to proceed
 	[ "$$" -eq "$PM_PARENT_PID" -a -n "$DI_FILES" ] && (read_distinfos)&
 
 	# Handle the problem of manual fetching


More information about the svn-src-user mailing list