diff options
| author | Simon McVittie <smcv@debian.org> | 2024-09-23 19:27:41 +0100 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-09-27 20:34:26 +0300 |
| commit | c3597520992b0743c7a954416bc414de9cf57ce8 (patch) | |
| tree | 8c39d1382629924f163e480d4c7f99551e9fea7f /mesonbuild/scripts | |
| parent | 1aac6cc1ec380a14519822d1a2bdf3e5850de68b (diff) | |
| download | meson-c3597520992b0743c7a954416bc414de9cf57ce8.tar.gz | |
env2mfile: Fix a typo
Debian cross architectures are detected via dpkg-architecture, not via
dpkg-reconfigure.
Signed-off-by: Simon McVittie <smcv@debian.org>
Diffstat (limited to 'mesonbuild/scripts')
| -rwxr-xr-x | mesonbuild/scripts/env2mfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/env2mfile.py b/mesonbuild/scripts/env2mfile.py index bc0101e26..c6f22ae76 100755 --- a/mesonbuild/scripts/env2mfile.py +++ b/mesonbuild/scripts/env2mfile.py @@ -330,7 +330,7 @@ def detect_cross_system(infos: MachineInfo, options: T.Any) -> None: def detect_cross_env(options: T.Any) -> MachineInfo: if options.debarch: - print('Detecting cross environment via dpkg-reconfigure.') + print('Detecting cross environment via dpkg-architecture.') infos = detect_cross_debianlike(options) else: print('Detecting cross environment via environment variables.') |
