aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-04-19 09:46:47 +0200
committerMs2ger <Ms2ger@gmail.com>2016-11-16 13:31:21 +0100
commit9a5abab442168be589e15a4def0e2c8225b31de9 (patch)
treeb3e0cf444f67c533860dd59a2e564c6f61062fb5 /python/servo/build_commands.py
parent3fdce3942915e2ef461280d4908641580473ad94 (diff)
downloadservo-9a5abab442168be589e15a4def0e2c8225b31de9.tar.gz
servo-9a5abab442168be589e15a4def0e2c8225b31de9.zip
Move the servo binary to ports.
Diffstat (limited to 'python/servo/build_commands.py')
-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 b78a286be61..514a8f87e69 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -214,7 +214,7 @@ class MachCommands(CommandBase):
self.ensure_bootstrapped(target=target)
if debug_mozjs:
- features += ["script/debugmozjs"]
+ features += ["debugmozjs"]
if features:
opts += ["--features", "%s" % ' '.join(features)]
@@ -360,7 +360,7 @@ class MachCommands(CommandBase):
servo_features = self.servo_features()
if servo_features:
- opts += ["--features", "%s" % ' '.join("servo/" + x for x in servo_features)]
+ opts += ["--features", "%s" % ' '.join(servo_features)]
build_start = time()
env = self.build_env(is_build=True)