diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-09-14 00:59:59 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-09-14 15:50:29 -0400 |
commit | c43bad236942d5b63aadaef04c5fe01d017ccc9b (patch) | |
tree | 42c42091b9d82cecaa805262abc43e568a3488d9 /mesonbuild/backend/xcodebackend.py | |
parent | a387e8d7436af4080fbbe45f06473fe1d5a0c423 (diff) | |
download | meson-c43bad236942d5b63aadaef04c5fe01d017ccc9b.zip meson-c43bad236942d5b63aadaef04c5fe01d017ccc9b.tar.gz meson-c43bad236942d5b63aadaef04c5fe01d017ccc9b.tar.bz2 |
fix untested codepath? add:item() is surely a typo, not a real function
Diffstat (limited to 'mesonbuild/backend/xcodebackend.py')
-rw-r--r-- | mesonbuild/backend/xcodebackend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/xcodebackend.py b/mesonbuild/backend/xcodebackend.py index 5b3d33e..7a02766 100644 --- a/mesonbuild/backend/xcodebackend.py +++ b/mesonbuild/backend/xcodebackend.py @@ -602,7 +602,7 @@ class XCodeBackend(backends.Backend): if isinstance(dep, dependencies.AppleFrameworks): for f in dep.frameworks: fw_dict = PbxDict() - objects_dict.add:item(self.native_frameworks[f], fw_dict, f'{f}.framework in Frameworks') + objects_dict.add_item(self.native_frameworks[f], fw_dict, f'{f}.framework in Frameworks') fw_dict.add_item('isa', 'PBXBuildFile') fw_dict.add_item('fileRef', self.native_frameworks_fileref[f], f) |