diff options
author | David Robillard <d@drobilla.net> | 2019-03-17 17:31:04 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-17 18:14:27 +0100 |
commit | 8c3d48d190cb73d73891ed704c84707d16c27272 (patch) | |
tree | 89b5dd3652f1f77dbfd6819023ee3843fcea8283 /waflib/extras/gccdeps.py | |
parent | 914c4143592af494d70549ee614b578ab681450c (diff) | |
parent | 1c6fb2b3543d1229eadaa2af007383fbcf82289d (diff) | |
download | serd-8c3d48d190cb73d73891ed704c84707d16c27272.tar.gz serd-8c3d48d190cb73d73891ed704c84707d16c27272.tar.bz2 serd-8c3d48d190cb73d73891ed704c84707d16c27272.zip |
Update autowaf and adapt to new API
Diffstat (limited to 'waflib/extras/gccdeps.py')
-rw-r--r-- | waflib/extras/gccdeps.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/waflib/extras/gccdeps.py b/waflib/extras/gccdeps.py index d9758ab3..bfabe72e 100644 --- a/waflib/extras/gccdeps.py +++ b/waflib/extras/gccdeps.py @@ -36,7 +36,7 @@ def scan(self): names = [] return (nodes, names) -re_o = re.compile("\.o$") +re_o = re.compile(r"\.o$") re_splitter = re.compile(r'(?<!\\)\s+') # split by space, except when spaces are escaped def remove_makefile_rule_lhs(line): @@ -197,7 +197,7 @@ def configure(conf): except Errors.ConfigurationError: pass else: - conf.env.append_value('CFLAGS', gccdeps_flags) + conf.env.append_value('CFLAGS', flags) conf.env.append_unique('ENABLE_GCCDEPS', 'c') if conf.env.CXX_NAME in supported_compilers: @@ -206,7 +206,7 @@ def configure(conf): except Errors.ConfigurationError: pass else: - conf.env.append_value('CXXFLAGS', gccdeps_flags) + conf.env.append_value('CXXFLAGS', flags) conf.env.append_unique('ENABLE_GCCDEPS', 'cxx') def options(opt): |