Date: Fri, 20 Jul 2012 08:36:53 +0000 (UTC) From: Doug Barton <dougb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r238654 - user/dougb/portmaster Message-ID: <201207200836.q6K8araT074106@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207200836.q6K8araT074106>