diff options
author | comex | 2015-07-12 19:25:22 -0400 |
---|---|---|
committer | comex | 2015-07-12 19:25:22 -0400 |
commit | d07d1dd683bcdc70edb26fc38719f38a591f1468 (patch) | |
tree | af0724c32b483ea89a646d26b77f08994b9c4505 /script | |
parent | fixes (diff) | |
download | substitute-d07d1dd683bcdc70edb26fc38719f38a591f1468.tar.gz |
fix my hash table algorithm - argh
Diffstat (limited to 'script')
-rw-r--r-- | script/mconfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/script/mconfig.py b/script/mconfig.py index 9b37089..ac47d01 100644 --- a/script/mconfig.py +++ b/script/mconfig.py @@ -870,6 +870,7 @@ class MakefileEmitter(Emitter): raise ValueError("your awful filename %r can't be encoded in make (probably)" % (fn,)) return re.sub(r'([ :\$\\])', r'\\\1', fn) # depfile = ('makefile', filename) or ('msvc',) + # TODO TODO: the depfile out paths won't be relative, fix that somehow def add_command_raw(self, outs, ins, argvs, phony=False, depfile=None): bit = '' outs = ' '.join(map(self.filename_rel_and_escape, outs)) |