diff options
| author | Vincent Richard <[email protected]> | 2009-09-14 17:07:06 +0200 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2009-09-14 17:07:06 +0200 |
| commit | b4d964c63bfb6e149611cc080ce714f112cb6175 (patch) | |
| tree | 3b8f59940079bc2abec6f7c18f30b11a9a56606a | |
| parent | Relicensed VMime under the GNU GPL version 3. Changed copyright year to 2009. (diff) | |
| download | vmime-b4d964c63bfb6e149611cc080ce714f112cb6175.tar.gz vmime-b4d964c63bfb6e149611cc080ce714f112cb6175.zip | |
Added workaround for Decider() for legacy versions of SCons.
| -rw-r--r-- | SConstruct | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -439,7 +439,11 @@ EnsureSConsVersion(0, 94) SetOption('implicit_cache', 1) -Decider('MD5-timestamp') +try: + Decider('MD5-timestamp') +except: + SourceSignatures('MD5') + TargetSignatures('build') ############# |
