diff options
Diffstat (limited to 'mesonbuild/backend/xcodebackend.py')
-rw-r--r-- | mesonbuild/backend/xcodebackend.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mesonbuild/backend/xcodebackend.py b/mesonbuild/backend/xcodebackend.py index c49f01d..b37ee2f 100644 --- a/mesonbuild/backend/xcodebackend.py +++ b/mesonbuild/backend/xcodebackend.py @@ -431,10 +431,8 @@ class XCodeBackend(backends.Backend): for s in t.sources: if isinstance(s, mesonlib.File): s = os.path.join(s.subdir, s.fname) - if not isinstance(s, str): continue - s = os.path.join(t.subdir, s) sdict = PbxDict() idval = self.buildfile_ids[(tname, s)] fileref = self.fileref_ids[(tname, s)] @@ -495,10 +493,8 @@ class XCodeBackend(backends.Backend): for s in t.sources: if isinstance(s, mesonlib.File): s = os.path.join(s.subdir, s.fname) - if not isinstance(s, str): continue - s = os.path.join(t.subdir, s) idval = self.fileref_ids[(tname, s)] fullpath = os.path.join(self.environment.get_source_dir(), s) src_dict = PbxDict() |