aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorAlan Jeffrey <ajeffrey@mozilla.com>2019-11-25 10:09:57 -0600
committerAlan Jeffrey <ajeffrey@mozilla.com>2019-11-25 10:12:05 -0600
commit57af033a28f806f2f1b792575f8ae52f9485d1ba (patch)
tree09fbcbeb947064571265ad57bc7697e41eda547e /python/servo/command_base.py
parent69acec137dd09ad8a1e43f1d41cc8235ee97cad6 (diff)
downloadservo-57af033a28f806f2f1b792575f8ae52f9485d1ba.tar.gz
servo-57af033a28f806f2f1b792575f8ae52f9485d1ba.zip
Require gstreamer 1.16 in mach
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 5a8818333a9..e6b3ec7908b 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -583,10 +583,10 @@ class CommandBase(object):
return True
else:
raise Exception("Your system's gstreamer libraries are out of date \
-(we need at least 1.12). Please run ./mach bootstrap-gstreamer")
+(we need at least 1.16). Please run ./mach bootstrap-gstreamer")
else:
raise Exception("Your system's gstreamer libraries are out of date \
-(we need at least 1.12). If you're unable to \
+(we need at least 1.16). If you're unable to \
install them, let us know by filing a bug!")
return False
@@ -679,7 +679,7 @@ install them, let us know by filing a bug!")
# we append in the reverse order so that system gstreamer libraries
# do not get precedence
extra_path = [libpath] + extra_path
- extra_lib = [libpath] + extra_path
+ extra_lib = [libpath] + extra_lib
append_to_path_env(path.join(libpath, "pkgconfig"), env, "PKG_CONFIG_PATH")
if sys.platform == "linux2":