Skip to content

Commit

Permalink
env2mfile: Fix a typo
Browse files Browse the repository at this point in the history
Debian cross architectures are detected via dpkg-architecture, not via
dpkg-reconfigure.

Signed-off-by: Simon McVittie <smcv@debian.org>
  • Loading branch information
smcv authored and jpakkane committed Sep 27, 2024
1 parent 1aac6cc commit c359752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/scripts/env2mfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.')
Expand Down

0 comments on commit c359752

Please sign in to comment.