aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2009-09-14 17:07:06 +0200
committerVincent Richard <[email protected]>2009-09-14 17:07:06 +0200
commitb4d964c63bfb6e149611cc080ce714f112cb6175 (patch)
tree3b8f59940079bc2abec6f7c18f30b11a9a56606a
parentRelicensed VMime under the GNU GPL version 3. Changed copyright year to 2009. (diff)
downloadvmime-b4d964c63bfb6e149611cc080ce714f112cb6175.tar.gz
vmime-b4d964c63bfb6e149611cc080ce714f112cb6175.zip
Added workaround for Decider() for legacy versions of SCons.
-rw-r--r--SConstruct6
1 files changed, 5 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 2e86832c..89b58f69 100644
--- a/SConstruct
+++ b/SConstruct
@@ -439,7 +439,11 @@ EnsureSConsVersion(0, 94)
SetOption('implicit_cache', 1)
-Decider('MD5-timestamp')
+try:
+ Decider('MD5-timestamp')
+except:
+ SourceSignatures('MD5')
+ TargetSignatures('build')
#############