diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2015-01-10 17:32:49 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2015-01-23 01:57:20 -0800 |
commit | b3112bd3f6d0887fdf81610327c9edad08a0cfaf (patch) | |
tree | e1b1099468399a3b22852a5947a3cac47da904ca /tools | |
parent | c482e420bcf447073ffe3ff8a106a0561e0baadd (diff) | |
download | tmwa-b3112bd3f6d0887fdf81610327c9edad08a0cfaf.tar.gz tmwa-b3112bd3f6d0887fdf81610327c9edad08a0cfaf.tar.bz2 tmwa-b3112bd3f6d0887fdf81610327c9edad08a0cfaf.tar.xz tmwa-b3112bd3f6d0887fdf81610327c9edad08a0cfaf.zip |
Use generated config for map
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/debug-debug-scripts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/debug-debug-scripts b/tools/debug-debug-scripts index 7cb91d9..2112a6e 100755 --- a/tools/debug-debug-scripts +++ b/tools/debug-debug-scripts @@ -93,7 +93,7 @@ def main(args): newbase = basename.split('src/')[1].replace('/', '-') out = os.path.join(outdir, newbase + '.cpp') with protocol.OpenWrite(out) as w: - print('// %s.cpp - generated by' % newbase, __file__, file=w) + print('// %s.cpp - generated by %s from %s' % (newbase, __file__, a), file=w) print(copyright, file=w) print('#include <cstdio>', file=w) print('// just mention "fwd.hpp" and "../poison.hpp" to make formatter happy', file=w) |