aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap.py
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2019-03-27 10:51:13 -0400
committerGitHub <noreply@github.com>2019-03-27 10:51:13 -0400
commit3e81a5afe938570ee4a0321e2c0269ed582e3adf (patch)
treee6a21c4031daf374f949e7f686f4f89aad656a9d /python/servo/bootstrap.py
parent0cb87cca137ae68d2bfc132750a0dd9d1b499ad0 (diff)
parent10585be25c334bd15710d1a6d93391a9acb6d543 (diff)
downloadservo-3e81a5afe938570ee4a0321e2c0269ed582e3adf.tar.gz
servo-3e81a5afe938570ee4a0321e2c0269ed582e3adf.zip
Auto merge of #23111 - ferjm:mach.bootstrap.gstreamer.update, r=jdm
Update `mach bootstrap-gstreamer` to use the latest binaries <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23111) <!-- Reviewable:end -->
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