diff --git a/common.py b/common.py index 8c8b55dfb6..67d02d52d8 100644 --- a/common.py +++ b/common.py @@ -45,10 +45,9 @@ def git(*args, repository_path='.'): stderr=subprocess.STDOUT).decode() def accept_command(commands): - """Search @commands and returns the first found absolute path.""" + """Search @commands and returns the first found command""" for command in commands: - command = shutil.which(command) - if command: + if shutil.which(command): return command return None diff --git a/setup.py b/setup.py index 38d4f722d8..1f9d1a1e2c 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ class GstBuildConfigurer: subprocess.check_call( [sys.executable, meson, "../"] + self.args + self.get_configs(), cwd=build_dir) print("\nYou can now build GStreamer and its various subprojects running:\n" - " $ ninja -C %s" % build_dir) + " $ {} -C {!r}".format(ninja, build_dir)) except subprocess.CalledProcessError: return False