aboutsummaryrefslogtreecommitdiff
path: root/meson.py
diff options
context:
space:
mode:
Diffstat (limited to 'meson.py')
-rwxr-xr-xmeson.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/meson.py b/meson.py
index 8f944c7..abbac6f 100755
--- a/meson.py
+++ b/meson.py
@@ -15,7 +15,12 @@
# limitations under the License.
from mesonbuild import mesonmain
-import sys
+import sys, os
+
+def main():
+ # Always resolve the command path so Ninja can find it for regen, tests, etc.
+ launcher = os.path.realpath(sys.argv[0])
+ return mesonmain.run(sys.argv[1:], launcher)
if __name__ == '__main__':
- sys.exit(mesonmain.main())
+ sys.exit(main())