From be63e77949657b2d7994d49bc04dd43a031d5aed Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 30 Mar 2022 19:48:03 +0300 Subject: Fix typos in Xcode backend. --- mesonbuild/backend/xcodebackend.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mesonbuild/backend/xcodebackend.py b/mesonbuild/backend/xcodebackend.py index 72667d7..ad48673 100644 --- a/mesonbuild/backend/xcodebackend.py +++ b/mesonbuild/backend/xcodebackend.py @@ -822,7 +822,7 @@ class XCodeBackend(backends.Backend): if isinstance(s, mesonlib.File): s = os.path.join(s.subdir, s.fname) elif isinstance(s, str): - s = os.path.joni(t.subdir, s) + s = os.path.join(t.subdir, s) else: continue custom_dict = PbxDict() @@ -942,7 +942,7 @@ class XCodeBackend(backends.Backend): if isinstance(s, mesonlib.File): s = os.path.join(s.subdir, s.fname) elif isinstance(s, str): - s = os.path.joni(t.subdir, s) + s = os.path.join(t.subdir, s) else: continue source_file_children.add_item(self.fileref_ids[(tname, s)], s) @@ -975,7 +975,7 @@ class XCodeBackend(backends.Backend): if isinstance(s, mesonlib.File): s = os.path.join(s.subdir, s.fname) elif isinstance(s, str): - s = os.path.joni(t.subdir, s) + s = os.path.join(t.subdir, s) else: continue target_children.add_item(self.fileref_ids[(tid, s)], s) -- cgit v1.1