Bug 1029513 - Remove mentions of --skip-venkman in mail/config mozconfigs. r=bustagefix. in a CLOSED TREE
--- a/build/client.py-args
+++ b/build/client.py-args
@@ -1,1 +1,1 @@
---hg-options='--time' --hgtool=../tools/buildfarm/utils/hgtool.py --hgtool1=../scripts/buildfarm/utils/hgtool.py --skip-chatzilla --skip-comm --skip-inspector --skip-venkman --tinderbox-print
+--hg-options='--time' --hgtool=../tools/buildfarm/utils/hgtool.py --hgtool1=../scripts/buildfarm/utils/hgtool.py --skip-chatzilla --skip-comm --skip-inspector --tinderbox-print
--- a/build/client.py-l10n-args
+++ b/build/client.py-l10n-args
@@ -1,1 +1,1 @@
---hg-options='--time' --hgtool=../tools/buildfarm/utils/hgtool.py --hgtool1=../scripts/buildfarm/utils/hgtool.py --skip-chatzilla --skip-comm --skip-inspector --skip-venkman --tinderbox-print
+--hg-options='--time' --hgtool=../tools/buildfarm/utils/hgtool.py --hgtool1=../scripts/buildfarm/utils/hgtool.py --skip-chatzilla --skip-comm --skip-inspector --tinderbox-print
--- a/client.py
+++ b/client.py
@@ -5,17 +5,17 @@
# Warning, this file must be compatible with Python 2.4, for our
# various tools, such as http://mxr.mozilla.org/ see-also: Bug 601207
# Repo Defaults
# 'REV' controls the default rev for All the various repo's
# Define x_REV to override. Where x can be one of:
-# "COMM", "MOZILLA", "CHATZILLA", "INSPECTOR", "VENKMAN", "LDAPSDKS"
+# "COMM", "MOZILLA", "CHATZILLA", "INSPECTOR", "LDAPSDKS"
DEFAULTS = {
# Global Default Revision
'REV': "default",
# LDAPSDKS
'LDAPSDKS_REPO': 'https://hg.mozilla.org/projects/ldap-sdks/',
'LDAPSDKS_REV': 'LDAPCSDK_6_0_7F_RTM',
@@ -625,22 +625,21 @@ if action in ('checkout', 'co'):
print "Fetching last known good mozilla revision"
options.mozilla_rev = get_last_known_good_mozilla_rev()
print "Setting mozilla_rev to '%s'" % options.mozilla_rev
fixup_mozilla_repo_options(options)
do_hg_pull('mozilla', options.mozilla_repo, options.hg, options.mozilla_rev, options.hgtool, options.hgtool1)
# Check whether destination directory exists for these extensions.
- if (not options.skip_chatzilla or not options.skip_inspector or \
- not options.skip_venkman) and \
+ if (not options.skip_chatzilla or not options.skip_inspector) and \
not os.path.exists(os.path.join(topsrcdir, 'mozilla', 'extensions')):
# Don't create the directory: Mozilla repository should provide it...
sys.exit("Error: mozilla/extensions directory does not exist;" + \
- " ChatZilla, DOM Inspector and/or Venkman cannot be checked out!")
+ " ChatZilla, and/or DOM Inspector cannot be checked out!")
if not options.skip_chatzilla:
fixup_chatzilla_repo_options(options)
do_hg_pull(os.path.join('mozilla', 'extensions', 'irc'), options.chatzilla_repo, options.hg, options.chatzilla_rev)
if not options.skip_inspector:
fixup_inspector_repo_options(options)
do_hg_pull(os.path.join('mozilla', 'extensions', 'inspector'), options.inspector_repo, options.hg, options.inspector_rev)