aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-03-30 19:48:03 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2022-03-30 22:32:55 +0300
commitbe63e77949657b2d7994d49bc04dd43a031d5aed (patch)
tree70c5768fbdff47dbed77d8e9c585c0b566280a5c /mesonbuild/backend
parentb44042b5a9f7d73112fd174a3fa70095a5b8b0ac (diff)
downloadmeson-be63e77949657b2d7994d49bc04dd43a031d5aed.zip
meson-be63e77949657b2d7994d49bc04dd43a031d5aed.tar.gz
meson-be63e77949657b2d7994d49bc04dd43a031d5aed.tar.bz2
Fix typos in Xcode backend.
Diffstat (limited to 'mesonbuild/backend')
-rw-r--r--mesonbuild/backend/xcodebackend.py6
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)