mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
setup.py: Print the detected Ninja and quote build_dir
The build_dir is an absolute path, so quote it.
This commit is contained in:
parent
b75903c8f8
commit
97262139f1
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -54,7 +54,7 @@ class GstBuildConfigurer:
|
||||||
subprocess.check_call(
|
subprocess.check_call(
|
||||||
[sys.executable, meson, "../"] + self.args + self.get_configs(), cwd=build_dir)
|
[sys.executable, meson, "../"] + self.args + self.get_configs(), cwd=build_dir)
|
||||||
print("\nYou can now build GStreamer and its various subprojects running:\n"
|
print("\nYou can now build GStreamer and its various subprojects running:\n"
|
||||||
" $ ninja -C %s" % build_dir)
|
" $ {} -C {!r}".format(os.path.basename(ninja), build_dir))
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue