diff options
Diffstat (limited to 'meson/test cases/common/182 find override/subdir/gencodegen.py.in')
-rwxr-xr-x | meson/test cases/common/182 find override/subdir/gencodegen.py.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meson/test cases/common/182 find override/subdir/gencodegen.py.in b/meson/test cases/common/182 find override/subdir/gencodegen.py.in new file mode 100755 index 000000000..78ebb2f4e --- /dev/null +++ b/meson/test cases/common/182 find override/subdir/gencodegen.py.in @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 + +import sys +import pathlib + +[ifilename, ofilename] = sys.argv[1:3] + +ftempl = '''int %s(void) { + return @NUMBER@; +} +''' + +d = pathlib.Path(ifilename).read_text().split('\n')[0].strip() + +pathlib.Path(ofilename).write_text(ftempl % d) |