diff options
author | Steven Knight <knight@baldmt.com> | 2004-04-25 19:47:31 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-04-25 19:47:31 (GMT) |
commit | b208faa0ddd78bdc78d1fb4cdc1953b799b193ee (patch) | |
tree | 8d8a4602fe35bf6d30f890c083280157cd8487da /src/RELEASE.txt | |
parent | 4573f82503e4ea29b53390a6036ebc2c5d424c86 (diff) | |
download | SCons-b208faa0ddd78bdc78d1fb4cdc1953b799b193ee.zip SCons-b208faa0ddd78bdc78d1fb4cdc1953b799b193ee.tar.gz SCons-b208faa0ddd78bdc78d1fb4cdc1953b799b193ee.tar.bz2 |
Have SConsignFile() use a dblite.py module by default, so we can control the behavior. (Ralf W. Grosse-Kunstleve)
Diffstat (limited to 'src/RELEASE.txt')
-rw-r--r-- | src/RELEASE.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/RELEASE.txt b/src/RELEASE.txt index 09a3d6f..c7b46fd 100644 --- a/src/RELEASE.txt +++ b/src/RELEASE.txt @@ -27,6 +27,16 @@ RELEASE 0.96 - XXX Please note the following important changes since release 0.95: + - The SConsignFile() function now uses an internally-supplied + SCons.dblite module as the default DB scheme for the .sconsign file. + If you are using the SConsignFile() function without an explicitly + specified dbm_module argument, this will cause all of your targets + to be recompiled the first time you use SCons 0.96. To preserve the + previous behavior, specify the "anydbm" module explicitly: + + import anydbm + SConsignFile('.sconsign_file_name', anydbm) + - The internal Scanner.add_skey() method longer works for the default scanners, which now use construction variables to hold their lists of suffixes. If you had a custom Tool specification that was |