Move ports/geckolib/target to target/geckolib

This commit is contained in:
Simon Sapin 2016-07-08 14:36:36 +02:00
parent 846a951155
commit 24575ff226
2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View file

@ -6,7 +6,6 @@
/ports/android/libs
/ports/android/local.properties
/ports/android/obj
/ports/geckolib/target
/python/_virtualenv
/python/tidy/servo_tidy.egg-info
*~

View file

@ -332,7 +332,7 @@ class MachCommands(CommandBase):
opts += ["--release"]
env = self.build_env()
env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "ports/geckolib/target")
env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "target", "geckolib")
build_start = time()
with cd(path.join("ports", "geckolib")):