aboutsummaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorcomex2015-07-12 19:25:22 -0400
committercomex2015-07-12 19:25:22 -0400
commitd07d1dd683bcdc70edb26fc38719f38a591f1468 (patch)
treeaf0724c32b483ea89a646d26b77f08994b9c4505 /script
parentfixes (diff)
downloadsubstitute-d07d1dd683bcdc70edb26fc38719f38a591f1468.tar.gz
fix my hash table algorithm - argh
Diffstat (limited to 'script')
-rw-r--r--script/mconfig.py1
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))