Skip to content

Commit

Permalink
Fix base options not reconfigurable
Browse files Browse the repository at this point in the history
  • Loading branch information
bruchar1 committed Jan 4, 2024
1 parent 8f92417 commit cb61c1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesonbuild/coredata.py
Original file line number Diff line number Diff line change
Expand Up @@ -985,9 +985,9 @@ def set_default_options(self, default_options: T.MutableMapping[OptionKey, str],
# not differ between them even when they are valid for both.
if subproject and k.is_builtin() and self.options[k.evolve(subproject='', machine=MachineChoice.HOST)].yielding:
continue
# Skip base, compiler, and backend options, they are handled when
# Skip compiler and backend options, they are handled when
# adding languages and setting backend.
if k.type in {OptionType.COMPILER, OptionType.BACKEND, OptionType.BASE}:
if k.type in {OptionType.COMPILER, OptionType.BACKEND}:
continue
options[k] = v

Expand Down

0 comments on commit cb61c1f

Please sign in to comment.