diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-01-14 01:39:31 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-01-14 01:39:31 +0100 |
commit | 631623a80ed7cd2c15eb1dd2abfcfc3b9b7e59e4 (patch) | |
tree | ee45435e138032e2fc36779673dd430b0986e0dd /python/servo/command_base.py | |
parent | fe0d2866f12aabedca5cc4394d642a5bf0e30fbe (diff) | |
download | servo-631623a80ed7cd2c15eb1dd2abfcfc3b9b7e59e4.tar.gz servo-631623a80ed7cd2c15eb1dd2abfcfc3b9b7e59e4.zip |
Remove work-around that is now unnecessary
We use rustup.rs, where each toolchain has its own Cargo version.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index b58ac21807f..360fe1a2701 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -296,10 +296,6 @@ class CommandBase(object): def set_use_geckolib_toolchain(self, use_geckolib_toolchain=True): self._use_geckolib_toolchain = use_geckolib_toolchain - if use_geckolib_toolchain: - # We use Cargo Nightly 1.24 with Rust 1.22, - # it passes `-C incremental` to rustc, which is new in Rust 1.24. - self.config["build"]["incremental"] = False def toolchain(self): if self._use_geckolib_toolchain: |