aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-06-19 19:12:46 +0000
committerEli Schwartz <eschwartz93@gmail.com>2023-06-19 15:19:41 -0400
commit8c766f5b5bd33c93deabff41e2152d7f7e368492 (patch)
treead8db19ced177e3a20b684191e180d30c37ee33c /mesonbuild
parentb0d2a925849be8826ec5f18755a5aed743f5c72d (diff)
downloadmeson-8c766f5b5bd33c93deabff41e2152d7f7e368492.zip
meson-8c766f5b5bd33c93deabff41e2152d7f7e368492.tar.gz
meson-8c766f5b5bd33c93deabff41e2152d7f7e368492.tar.bz2
compilers: don't recommend deprecated env var
RUST_LD was deprecated in Meson 0.54 in favor of RUSTC_LD.
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/compilers/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/detect.py b/mesonbuild/compilers/detect.py
index a591e87..f6d1c42 100644
--- a/mesonbuild/compilers/detect.py
+++ b/mesonbuild/compilers/detect.py
@@ -1014,7 +1014,7 @@ def detect_rust_compiler(env: 'Environment', for_machine: MachineChoice) -> Rust
mlog.warning(
'Please do not put -C linker= in your compiler '
'command, set rust_ld=command in your cross file '
- 'or use the RUST_LD environment variable, otherwise meson '
+ 'or use the RUSTC_LD environment variable, otherwise meson '
'will override your selection.')
compiler = compiler.copy() # avoid mutating the original list