Commit 626329a1 authored by Max Kellermann's avatar Max Kellermann

python/build/meson.py: create build_path if it does not exist

parent 8bf250c2
......@@ -33,6 +33,7 @@ class MesonProject(Project):
# TODO: write pkg-config wrapper
path = os.path.join(toolchain.build_path, 'meson.cross')
os.makedirs(toolchain.build_path, exist_ok=True)
with open(path, 'w') as f:
f.write("""
[binaries]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment