Skip to content

Commit

Permalink
fix typoed vs backend token
Browse files Browse the repository at this point in the history
  • Loading branch information
eli-schwartz committed Nov 2, 2021
1 parent 0f0b1f2 commit ab17416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/backend/vs2010backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,7 @@ def gen_vcxproj(self, target, ofname, guid):
ET.SubElement(link, 'ModuleDefinitionFile').text = relpath
if self.debug:
pdb = ET.SubElement(link, 'ProgramDataBaseFileName')
pdb.text = '$(OutDir}%s.pdb' % target_name
pdb.text = '$(OutDir)%s.pdb' % target_name
targetmachine = ET.SubElement(link, 'TargetMachine')
if target.for_machine is MachineChoice.BUILD:
targetplatform = platform
Expand Down

0 comments on commit ab17416

Please sign in to comment.