[meson] Don’t use f-string
It requires Python 3.6+ https://github.com/harfbuzz/harfbuzz/pull/3760#issuecomment-1198972788
This commit is contained in:
parent
e51526bf06
commit
0c4495e555
|
@ -17,7 +17,7 @@ CURRENT_SOURCE_DIR = Path (sys.argv[2])
|
|||
sources = [Path(x) for x in sorted(set(sys.argv[3:]))]
|
||||
|
||||
with open (OUTPUT, "wb") as f:
|
||||
f.write ("".join (f'#include "{p.resolve ().relative_to (CURRENT_SOURCE_DIR)}"\n' for p in sources if p.suffix == ".cc").encode ())
|
||||
f.write ("".join ('#include "{}"\n'.format (p.resolve ().relative_to (CURRENT_SOURCE_DIR)) for p in sources if p.suffix == ".cc").encode ())
|
||||
|
||||
# copy it also to the source tree, but only if it has changed
|
||||
baseline = CURRENT_SOURCE_DIR / OUTPUT.name
|
||||
|
|
Loading…
Reference in New Issue