Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Dec 2011 06:07:19 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r228451 - projects/portbuild/qmanager
Message-ID:  <201112130607.pBD67JcY035638@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon (doc,ports committer)
Date: Tue Dec 13 06:07:19 2011
New Revision: 228451
URL: http://svn.freebsd.org/changeset/base/228451

Log:
  Attempt to pacify Python variable initialization.

Modified:
  projects/portbuild/qmanager/packagebuild

Modified: projects/portbuild/qmanager/packagebuild
==============================================================================
--- projects/portbuild/qmanager/packagebuild	Tue Dec 13 05:13:51 2011	(r228450)
+++ projects/portbuild/qmanager/packagebuild	Tue Dec 13 06:07:19 2011	(r228451)
@@ -66,8 +66,8 @@ QMANAGER_RUNAWAY_THRESHOLD  = int( \
     config.get( 'QMANAGER_RUNAWAY_THRESHOLD' ) )
 
 # debug controls
-DEBUG_PACKAGEBUILD = False
-DEBUG_RETCODE = False
+DEBUG_PACKAGEBUILD = True
+DEBUG_RETCODE = True
 
 # argument handling
 ARG_UNLIMITED_ERRORS = "unlimited-errors"
@@ -79,8 +79,6 @@ ports = {}
 
 pkg_sufx = None
 
-unlimited_errors = False
-
 # When a build fails we requeue it with a lower priority such that it
 # will never preempt a phase 1 build but will build when spare
 # capacity is available.
@@ -551,6 +549,7 @@ def main(arch, branch, buildid, args):
     index.parse()
     print "[MASTER] length = %s" % len(ports)
 
+    unlimited_errors = False
     print "[MASTER] Parsing arguments..."
     targets = []
     for arg in args:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112130607.pBD67JcY035638>