diff options
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 4 |
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) |