summaryrefslogtreecommitdiff
path: root/morph
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-02-28 14:52:10 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-02-28 14:52:10 +0000
commite65a63037e8ca4742cf3a3d8a96fe02035856b94 (patch)
tree8af4be5a573cda134bd02e4efcc4da143a5ab958 /morph
parent01dabc7668702c6930b90b2136998cb12e1dc1fd (diff)
downloadmorph-e65a63037e8ca4742cf3a3d8a96fe02035856b94.tar.gz
Clarify --tempdir help to explain why it's different from setting $TMPDIR
Diffstat (limited to 'morph')
-rwxr-xr-xmorph7
1 files changed, 6 insertions, 1 deletions
diff --git a/morph b/morph
index 9b81f277..858dc154 100755
--- a/morph
+++ b/morph
@@ -55,7 +55,12 @@ class Morph(cliapp.Application):
metavar='DIR',
default=defaults['cachedir'])
self.settings.string(['tempdir'],
- 'temporary directory to use for builds',
+ 'temporary directory to use for builds '
+ '(this is separate from just setting $TMPDIR '
+ 'or /tmp because those are used internally '
+ 'by things that cannot be on NFS, but '
+ 'this setting can point at a directory in '
+ 'NFS)',
metavar='DIR',
default=os.environ.get('TMPDIR'))
self.settings.boolean(['no-ccache'], 'do not use ccache')