[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:
Khaled Hosny 2022-07-29 13:22:18 +02:00
parent e51526bf06
commit 0c4495e555
1 changed files with 1 additions and 1 deletions

View File

@ -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