diff options
author | Corey McNeish <c.r.mcneish@gmail.com> | 2020-11-06 12:25:52 -0800 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-11-07 12:03:24 +0200 |
commit | b6dc4d5e5c6e838de0b52e62d982ba2547eb366d (patch) | |
tree | 69c97beccda66a59ff82784744b9eed500511a48 | |
parent | 00d5ef3191e5589ab16107107d78865d28a5fbf6 (diff) | |
download | meson-b6dc4d5e5c6e838de0b52e62d982ba2547eb366d.zip meson-b6dc4d5e5c6e838de0b52e62d982ba2547eb366d.tar.gz meson-b6dc4d5e5c6e838de0b52e62d982ba2547eb366d.tar.bz2 |
Fix host machine reporting typo in msetup.py
-rw-r--r-- | mesonbuild/msetup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/msetup.py b/mesonbuild/msetup.py index fc8c033..95e6b79 100644 --- a/mesonbuild/msetup.py +++ b/mesonbuild/msetup.py @@ -181,7 +181,7 @@ class MesonApp: else: logger_fun = mlog.debug build_machine = intr.builtin['build_machine'] - host_machine = intr.builtin['build_machine'] + host_machine = intr.builtin['host_machine'] target_machine = intr.builtin['target_machine'] assert isinstance(build_machine, interpreter.MachineHolder) assert isinstance(host_machine, interpreter.MachineHolder) |