svn commit: r228451 - projects/portbuild/qmanager
Mark Linimon
linimon at FreeBSD.org
Tue Dec 13 06:07:19 UTC 2011
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:
More information about the svn-src-projects
mailing list