From 10585be25c334bd15710d1a6d93391a9acb6d543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Jim=C3=A9nez=20Moreno?= Date: Wed, 27 Mar 2019 11:17:18 +0100 Subject: Update mach bootstrap-gstreamer to use the latest binaries --- python/servo/bootstrap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/servo/bootstrap.py') diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index 6456f1a0752..a3367f2e225 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -46,7 +46,7 @@ def install_trusty_deps(force): def check_gstreamer_lib(): - return subprocess.call(["pkg-config", "--atleast-version=1.12", "gstreamer-1.0"], + return subprocess.call(["pkg-config", "--atleast-version=1.14", "gstreamer-1.0"], stdout=PIPE, stderr=PIPE) == 0 @@ -94,7 +94,7 @@ def install_salt_dependencies(context, force): def gstreamer(context, force=False): cur = os.curdir gstdir = os.path.join(cur, "support", "linux", "gstreamer") - if not os.path.isdir(os.path.join(gstdir, "gstreamer", "lib")): + if not os.path.isdir(os.path.join(gstdir, "gst", "lib")): subprocess.check_call(["bash", "gstreamer.sh"], cwd=gstdir) return True return False -- cgit v1.2.3