diff options
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r-- | python/servo/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index c7060b3888a..6456f1a0752 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", "gstreamer-1.0 >= 1.12"], + return subprocess.call(["pkg-config", "--atleast-version=1.12", "gstreamer-1.0"], stdout=PIPE, stderr=PIPE) == 0 |