ninjabackend: use File.from_built_relative()
Do not reinvent it in NinjaBackend.determine_ext_objs(), so as to use
the recently added caching of the results of File.from_built_relative().
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index d5bda3b..fb912b1 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -883,8 +883,7 @@
for gensrc in extobj.genlist:
for r in gensrc.get_outputs():
path = self.get_target_generated_dir(extobj.target, gensrc, r)
- dirpart, fnamepart = os.path.split(path)
- raw_sources.append(File(True, dirpart, fnamepart))
+ raw_sources.append(File.from_built_relative(path))
# Filter out headers and all non-source files
sources: T.List['FileOrString'] = []