aboutsummaryrefslogtreecommitdiff
path: root/meson.py
diff options
context:
space:
mode:
authorMartin Kelly <mkelly@xevo.com>2018-04-24 16:57:18 -0700
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-05-30 18:29:16 +0000
commit0627e9d616dc311b7c9b0ef17301f680ac9e78a7 (patch)
treed58d446c9fa19d5ad4be7dc8b7fbdbed105a076d /meson.py
parentab599b5733539130db5c4d17c664744f4d5aacaf (diff)
downloadmeson-0627e9d616dc311b7c9b0ef17301f680ac9e78a7.zip
meson-0627e9d616dc311b7c9b0ef17301f680ac9e78a7.tar.gz
meson-0627e9d616dc311b7c9b0ef17301f680ac9e78a7.tar.bz2
mesonlib: handle meson exe wrappers
There are cases when it is useful to wrap the main meson executable with a script that sets up environment variables, passes --cross-file, etc. For example, in a Yocto SDK, we need to point to the right meson.cross so that everything "just works", and we need to alter CC, CXX, etc. In such cases, it can happen that the "meson" found in the path is actually a wrapper script that invokes the real meson, which may be in another location (e.g. "meson.real" or similar). Currently, in such a situation, meson gets confused because it tries to invoke itself using the "meson" executable (which points to the wrapper script) instead of the actual meson (which may be called "meson.real" or similar). In fact, the wrapper script is not necessarily even Python, so the whole thing fails. Fix this by using Python imports to directly find mesonmain.py instead of trying to detect it heuristically. In addition to fixing the wrapper issue, this should make the detection logic much more robust.
Diffstat (limited to 'meson.py')
-rwxr-xr-xmeson.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/meson.py b/meson.py
index abbac6f..8f944c7 100755
--- a/meson.py
+++ b/meson.py
@@ -15,12 +15,7 @@
# limitations under the License.
from mesonbuild import mesonmain
-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)
+import sys
if __name__ == '__main__':
- sys.exit(main())
+ sys.exit(mesonmain.main())