Correctly substitute the internal @BUILD_ROOT@ token with MSVC backend

To me, this looks like a mistake in 976c9abc, but perhaps there's something
I don't understand going on here.
This commit is contained in:
Jon Turney 2018-06-14 13:56:42 +01:00 committed by Nirbheek Chauhan
parent 09c03a409b
commit d17ce4ffd0
1 changed files with 1 additions and 1 deletions

View File

@ -837,7 +837,7 @@ class Backend:
outdir = self.get_target_dir(target)
if absolute_outputs:
source_root = self.environment.get_source_dir()
build_root = self.environment.get_source_dir()
build_root = self.environment.get_build_dir()
outdir = os.path.join(self.environment.get_build_dir(), outdir)
outputs = []
for i in target.get_outputs():