env2mfile: Fix a typo

Debian cross architectures are detected via dpkg-architecture, not via
dpkg-reconfigure.

Signed-off-by: Simon McVittie <smcv@debian.org>
This commit is contained in:
Simon McVittie 2024-09-23 19:27:41 +01:00 committed by Jussi Pakkanen
parent 1aac6cc1ec
commit c359752099
1 changed files with 1 additions and 1 deletions

View File

@ -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.')