Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
amcn committed Sep 10, 2024
1 parent 53e1148 commit 96e1a7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesonbuild/interpreter/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1345,8 +1345,8 @@ def func_add_languages(self, node: mparser.FunctionNode, args: T.Tuple[T.List[st
mlog.warning('add_languages is missing native:, assuming languages are wanted for both host and build.',
location=node)

success = self.add_languages(langs, False, MachineChoice.BUILD)
success &= self.add_languages(langs, required, MachineChoice.HOST)
success = self.add_languages(langs, required, MachineChoice.HOST)
success &= self.add_languages(langs, False, MachineChoice.BUILD)
return success

def _stringify_user_arguments(self, args: T.List[TYPE_var], func_name: str) -> T.List[str]:
Expand Down

0 comments on commit 96e1a7b

Please sign in to comment.