aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorGlenn Watson <gw@intuitionlibrary.com>2015-02-02 09:40:24 +1000
committerGlenn Watson <gw@intuitionlibrary.com>2015-02-02 10:38:12 +1000
commitf495884dcbf7814eb55721e5a30ba2ef865cf960 (patch)
treebfb05f02056e2487bfa999b1ecbebdc660d2c0aa /python
parentccdf0bd65e415eff024e034519f733eeded32812 (diff)
downloadservo-f495884dcbf7814eb55721e5a30ba2ef865cf960.tar.gz
servo-f495884dcbf7814eb55721e5a30ba2ef865cf960.zip
Remove the glfw port (it doesn't compile since last rustup anyway).
Diffstat (limited to 'python')
-rw-r--r--python/servo/build_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 9a5b6a609f1..12990921abd 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -74,7 +74,7 @@ class MachCommands(CommandBase):
if is_headless_build():
opts += ["--no-default-features"]
- features += ["glutin_app", "headless"]
+ features += ["headless"]
if android:
features += ["android_glue"]
@@ -144,7 +144,7 @@ class MachCommands(CommandBase):
self.ensure_bootstrapped()
args = ["cargo", "test", "--no-run"]
if is_headless_build():
- args += ["--no-default-features", "--features", "glutin_app headless"]
+ args += ["--no-default-features", "--features", "headless"]
return subprocess.call(
args,
env=self.build_env(), cwd=self.servo_crate())