diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py index ee47c5a65..53576bc4a 100644 --- a/mesonbuild/mesonlib.py +++ b/mesonbuild/mesonlib.py @@ -24,25 +24,32 @@ from glob import glob def detect_meson_py_location(): c = sys.argv[0] - c_fname = os.path.split(c)[1] - if c_fname == 'meson' or c_fname == 'meson.py': - # $ /foo/meson.py - if os.path.isabs(c): - return c - # $ meson (gets run from /usr/bin/meson) + c_dir, c_fname = os.path.split(c) + + # get the absolute path to the folder + m_dir = None + if os.path.isabs(c): + # $ /foo/.py + m_dir = c_dir + elif c_dir == '': + # $ (gets run from /usr/bin/) in_path_exe = shutil.which(c_fname) if in_path_exe: - # Special case: when run like "./meson.py " and user has - # period in PATH, we need to expand it out, because, for example, + m_dir, c_fname = os.path.split(in_path_exe) + # Special case: when run like "./meson.py ", + # we need to expand it out, because, for example, # "ninja test" will be run from a different directory. - if '.' in os.environ['PATH'].split(':'): - p, f = os.path.split(in_path_exe) - if p == '' or p == '.': - return os.path.join(os.getcwd(), f) - return in_path_exe - # $ python3 ./meson.py - if os.path.exists(c): - return os.path.join(os.getcwd(), c) + if m_dir == '.': + m_dir = os.getcwd() + else: + m_dir = os.path.abspath(c_dir) + + # find meson in m_dir + if m_dir is not None: + for fname in ['meson', 'meson.py']: + m_path = os.path.join(m_dir, fname) + if os.path.exists(m_path): + return m_path # The only thing remaining is to try to find the bundled executable and # pray distro packagers have not moved it.