diff options
author | Steven Knight <knight@baldmt.com> | 2004-02-28 07:25:33 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-02-28 07:25:33 (GMT) |
commit | 5b26639256205eabd4e055040c7529b8ec868dcf (patch) | |
tree | b96b3d5464cd6dd6ace593a33590834dc428e5eb /doc | |
parent | dfa9ded59f8641221328e2da7a06698a1b367ef1 (diff) | |
download | SCons-5b26639256205eabd4e055040c7529b8ec868dcf.zip SCons-5b26639256205eabd4e055040c7529b8ec868dcf.tar.gz SCons-5b26639256205eabd4e055040c7529b8ec868dcf.tar.bz2 |
Document the dbm_module argument to SConsignFile().
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 0b0756a..46a5dda 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -3287,9 +3287,9 @@ SConscript('bar/SConscript') # will chdir to bar '\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .TP -.RI SConsignFile([ file ]) +.RI SConsignFile([ file , dbm_module ]) .TP -.RI env.SConsignFile([ file ]) +.RI env.SConsignFile([ file , dbm_module ]) This tells .B scons to store all file signatures @@ -3306,6 +3306,23 @@ is not an absolute path name, the file is placed in the same directory as the top-level .B SConstruct file. + +The optional +.I dbm_module +argument can be used to specify +which Python database module +The default is to use +.B dumbdbm +if the specified +.I file +does not already exist, +and to use +.B anydbm +to auto-detect the database format +if the +.I file +already exists. + Examples: .ES |