diff options
Diffstat (limited to 'meson/test cases/failing/93 custom target install data/preproc.py')
-rw-r--r-- | meson/test cases/failing/93 custom target install data/preproc.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meson/test cases/failing/93 custom target install data/preproc.py b/meson/test cases/failing/93 custom target install data/preproc.py new file mode 100644 index 000000000..e6eba4c6a --- /dev/null +++ b/meson/test cases/failing/93 custom target install data/preproc.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 + +import sys + +if len(sys.argv) != 3: + print(sys.argv[0], '<input>', '<output>') + +inf = sys.argv[1] +outf = sys.argv[2] + +with open(outf, 'wb') as o: + with open(inf, 'rb') as i: + o.write(i.read()) |