diff options
author | Steven Knight <knight@baldmt.com> | 2005-05-29 07:00:29 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-05-29 07:00:29 (GMT) |
commit | cbedf0f4edb9c97758d1a2173864aa429159cb78 (patch) | |
tree | 46e8e540950f45152209fbb7d5f996ab98d92ecb | |
parent | 63e62617c607f64bd79c4f7d0a903a550b14c067 (diff) | |
download | SCons-cbedf0f4edb9c97758d1a2173864aa429159cb78.zip SCons-cbedf0f4edb9c97758d1a2173864aa429159cb78.tar.gz SCons-cbedf0f4edb9c97758d1a2173864aa429159cb78.tar.bz2 |
Clarify the man page description of --max-drift.
-rw-r--r-- | doc/man/scons.1 | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index a0f4089..52655bf 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -739,10 +739,15 @@ Ignored for compatibility with non-GNU versions of .RI --max-drift= SECONDS Set the maximum expected drift in the modification time of files to .IR SECONDS . -This value determines how old a file must be before its content signature -is cached. The default value is 2 days, which means a file must have a -modification time of at least two days ago in order to have its content -signature cached. A negative value means to never cache the content +This value determines how long a file must be unmodified +before its cached content signature +will be used instead of +calculating a new content signature (MD5 checksum) +of the file's contents. +The default value is 2 days, which means a file must have a +modification time of at least two days ago in order to have its +cached content signature used. +A negative value means to never cache the content signature and to ignore the cached value if there already is one. A value of 0 means to always cache the signature, no matter how old the file is. |