summaryrefslogtreecommitdiff
path: root/morphlib/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/app.py')
-rwxr-xr-xmorphlib/app.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/morphlib/app.py b/morphlib/app.py
index 9239bf31..b2ddfdb1 100755
--- a/morphlib/app.py
+++ b/morphlib/app.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2011-2012 Codethink Limited
+# Copyright (C) 2011-2013 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -124,8 +124,9 @@ class Morph(cliapp.Application):
group=group_build)
self.settings.boolean(['no-ccache'], 'do not use ccache',
group=group_build)
- self.settings.boolean(['no-distcc'], 'do not use distcc',
- group=group_build)
+ self.settings.boolean(['no-distcc'],
+ 'do not use distcc (default: true)',
+ group=group_build, default=True)
self.settings.string(['prefix'],
'build chunks with prefix PREFIX',
metavar='PREFIX', default=defaults['prefix'],