aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap.py
diff options
context:
space:
mode:
authorFernando Jiménez Moreno <ferjmoreno@gmail.com>2019-03-27 11:17:18 +0100
committerFernando Jiménez Moreno <ferjmoreno@gmail.com>2019-03-27 11:17:18 +0100
commit10585be25c334bd15710d1a6d93391a9acb6d543 (patch)
treee6a21c4031daf374f949e7f686f4f89aad656a9d /python/servo/bootstrap.py
parent0cb87cca137ae68d2bfc132750a0dd9d1b499ad0 (diff)
downloadservo-10585be25c334bd15710d1a6d93391a9acb6d543.tar.gz
servo-10585be25c334bd15710d1a6d93391a9acb6d543.zip
Update mach bootstrap-gstreamer to use the latest binaries
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r--python/servo/bootstrap.py4
1 files changed, 2 insertions, 2 deletions
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