diff options
| author | Romain Muller <romain.muller@esial.net> | 2011-05-18 17:20:08 +0200 |
|---|---|---|
| committer | Romain Muller <romain.muller@esial.net> | 2011-05-18 17:20:08 +0200 |
| commit | d1685ac7e91c5269cf01f6ab57c2c4705a14e6bc (patch) | |
| tree | e5c39786512e9d017c7b5288b7f8addf556a44f3 /wscript | |
| parent | 40774549e14e2d9f24b9271173d58b44f82d5254 (diff) | |
| download | libgit2-d1685ac7e91c5269cf01f6ab57c2c4705a14e6bc.tar.gz | |
Have wscript use the environment-provided CFLAGS as per WAF's documented behavior.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ def configure(conf): 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': conf.env.PLATFORM = 'win32' |
