X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FSConscript;h=a39e7f6c9f983460285920b4da72aca200ebb7d0;hb=412024ed31a4ab4eaea7a4165a434f8efebee325;hp=75a2b96ccc6e01c2c174c821476ce53fa31bf823;hpb=48e002c85474560e93187b1423a75dde49463147;p=senf.git diff --git a/Utils/SConscript b/Utils/SConscript index 75a2b96..a39e7f6 100644 --- a/Utils/SConscript +++ b/Utils/SConscript @@ -1,14 +1,15 @@ # -*- python -*- Import('env') -import SENFSCons, glob +import SENFSCons, glob, os.path ########################################################################### SENFSCons.StandardTargets(env) # OUCH ... another hack to work around a scons bug ... -Execute(Touch("Logger/all_includes.hh")) +if not os.path.exists("Logger/all_includes.hh"): + Execute(Touch("Logger/all_includes.hh")) sources, testSources = SENFSCons.GlobSources() objects = SENFSCons.Objects( env, sources = sources, testSources=testSources )