From 9cce3991508a4f01f499f170d13ffe06c02f0240 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Fri, 26 Apr 2013 12:04:39 +1000 Subject: [PATCH] Default to cvs with -z 9. --- source-builder/sb/cvs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source-builder/sb/cvs.py b/source-builder/sb/cvs.py index fb8db49..0ef781a 100644 --- a/source-builder/sb/cvs.py +++ b/source-builder/sb/cvs.py @@ -66,7 +66,7 @@ class repo: cwd = path.join(self.path, self.prefix) if not path.exists(cwd): raise error.general('cvs path needs to exist: %s' % (cwd)) - cmd = [self.cvs, '-q'] + args + cmd = [self.cvs, '-z', '9', '-q'] + args log.output('cmd: (%s) %s' % (str(cwd), ' '.join(cmd))) exit_code, proc, output = e.spawn(cmd, cwd = cwd) log.trace(output)