configure: Let user know when exit on meson error
[platform/upstream/gstreamer.git] / configure
index be47955..aab9e7d 100755 (executable)
--- 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: