Let user know about how to build after configure is done

This commit is contained in:
Thibault Saunier 2016-10-20 17:53:08 -03:00
parent b0bcc40026
commit e54a4ac66c

2
configure vendored
View file

@ -63,6 +63,8 @@ def configure_meson(args, options):
subprocess.check_call([sys.executable, meson, "../"] + args, cwd=build_dir)
subprocess.check_call([sys.executable, os.path.join(ROOTDIR, 'meson', 'mesonconf.py')]
+ get_configs(meson), cwd=build_dir)
print("You can now build GStreamer and its various subprojects running:\n"
" $ ninja -C %s" % build_dir)
except subprocess.CalledProcessError as e:
print("EXIT meson return %s" % e.returncode)
exit(1)