Skip to content

Commit

Permalink
Fix ugly path after path join with the empty dirname
Browse files Browse the repository at this point in the history
  • Loading branch information
klokik committed Nov 26, 2024
1 parent 8dba399 commit d4af5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/backend/xcodebackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,7 @@ def generate_single_build_target(self, objects_dict, target_name, target) -> Non
langname = LANGNAMEMAP[lang]
langargs.setdefault(langname, [])
langargs[langname] = cargs + cti_args + args
symroot = os.path.join(self.environment.get_build_dir(), target.subdir)
symroot = os.path.join(self.environment.get_build_dir(), target.subdir).rstrip('/')
bt_dict = PbxDict()
objects_dict.add_item(valid, bt_dict, buildtype)
bt_dict.add_item('isa', 'XCBuildConfiguration')
Expand Down

0 comments on commit d4af5fa

Please sign in to comment.