Commit ba9cc91f by Vicent Martí

Merge pull request #195 from RomainMuller/master

Consider environment-specified CFLAGS
parents 975eda2d d1685ac7
...@@ -50,7 +50,7 @@ def configure(conf): ...@@ -50,7 +50,7 @@ def configure(conf):
dbg = conf.options.debug dbg = conf.options.debug
conf.env.CFLAGS = CFLAGS_UNIX + (CFLAGS_UNIX_DBG if dbg else []) conf.env.CFLAGS += CFLAGS_UNIX + (CFLAGS_UNIX_DBG if dbg else [])
if conf.env.DEST_OS == 'win32': if conf.env.DEST_OS == 'win32':
conf.env.PLATFORM = 'win32' conf.env.PLATFORM = 'win32'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment