17 lines
350 B
Python
Executable File
17 lines
350 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import pathlib
|
|
import sys
|
|
|
|
if len(sys.argv) < 3:
|
|
sys.exit('usage: replacer.py <pattern> <replacement>')
|
|
|
|
source_root = pathlib.Path(os.environ['MESON_DIST_ROOT'])
|
|
|
|
modfile = source_root / 'prog.c'
|
|
|
|
contents = modfile.read_text()
|
|
contents = contents.replace(sys.argv[1], sys.argv[2])
|
|
modfile.write_text(contents)
|