From f802127a1e408782391199962f98a380887b1850 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Wed, 14 Sep 2016 10:42:52 -0300 Subject: [PATCH] configure: Let user know when exit on meson error --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index be47955447..aab9e7d0d7 100755 --- a/configure +++ b/configure @@ -74,7 +74,8 @@ def configure_meson(args): try: 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) with open(os.path.join(ROOTDIR, "Makefile"), "w") as makefile: