Merge pull request #62 from vinzenz/ccflags-handling

Fix CCFLAGS handling
This commit is contained in:
reduz 2014-02-14 03:30:51 -02:00
commit c12a8e922f

View file

@ -1,5 +1,6 @@
EnsureSConsVersion(0,14);
import string
import os
import os.path
import glob
@ -165,6 +166,11 @@ for p in platform_list:
env = detect.create(env_base)
else:
env = env_base.Clone()
CCFLAGS = env.get('CCFLAGS', '')
env['CCFLAGS'] = ''
env.Append(CCFLAGS=string.split(str(CCFLAGS)))
detect.configure(env)
env['platform'] = p
sys.path.remove("./platform/"+p)