diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2022-03-30 19:48:03 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-03-30 22:32:55 +0300 |
commit | be63e77949657b2d7994d49bc04dd43a031d5aed (patch) | |
tree | 70c5768fbdff47dbed77d8e9c585c0b566280a5c | |
parent | b44042b5a9f7d73112fd174a3fa70095a5b8b0ac (diff) | |
download | meson-be63e77949657b2d7994d49bc04dd43a031d5aed.zip meson-be63e77949657b2d7994d49bc04dd43a031d5aed.tar.gz meson-be63e77949657b2d7994d49bc04dd43a031d5aed.tar.bz2 |
Fix typos in Xcode backend.
-rw-r--r-- | mesonbuild/backend/xcodebackend.py | 6 |
1 files 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) |