mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
configure: Let user know when exit on meson error
This commit is contained in:
parent
be5e8af9e2
commit
f802127a1e
1 changed files with 2 additions and 1 deletions
3
configure
vendored
3
configure
vendored
|
@ -74,7 +74,8 @@ def configure_meson(args):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
subprocess.check_call([meson, "../"] + args + get_configs(meson))
|
subprocess.check_call([meson, "../"] + args + get_configs(meson))
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError as e:
|
||||||
|
print("EXIT meson return %s" % e.returncode)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
with open(os.path.join(ROOTDIR, "Makefile"), "w") as makefile:
|
with open(os.path.join(ROOTDIR, "Makefile"), "w") as makefile:
|
||||||
|
|
Loading…
Reference in a new issue