1
0
mirror of synced 2024-11-24 05:50:11 +01:00
micetools/meson.py

9 lines
157 B
Python
Raw Normal View History

2022-06-13 08:42:13 +02:00
import sys
2022-06-13 06:28:47 +02:00
import os
from mesonbuild import mesonmain
# https://bugs.python.org/issue36112
os.path.realpath = lambda path: path
2022-06-13 08:42:13 +02:00
sys.exit(mesonmain.main())