diff options
author | Mikael Urankar <mikael@FreeBSD.org> | 2022-07-18 06:34:34 +0000 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2022-07-18 12:21:36 +0000 |
commit | 84ef385cb82041d4630c22f87f6bc8effde51391 (patch) | |
tree | 93969e5e28adf42d00a9a84a2f5879ab98e047f5 | |
parent | a53efc77beaf0df89f1f9e9d3cfacb862140edeb (diff) | |
download | ports-84ef385cb82041d4630c22f87f6bc8effde51391.tar.gz ports-84ef385cb82041d4630c22f87f6bc8effde51391.zip |
lang/rust: don't overwrite RUST_BOOTSTRAP_VERSION
It was unintentionally overwritten with the update.sh script
This fixes building rust-nightly
-rw-r--r-- | lang/rust/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/rust/Makefile b/lang/rust/Makefile index cfb0ad2c9fde..a874f2604629 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -71,11 +71,10 @@ WASM_VARS_OFF= _RUST_BUILD_WASM=false # See WRKSRC/src/stage0.json for the date and version values BOOTSTRAPS_DATE?= 2022-05-19 -RUST_BOOTSTRAP_VERSION?= 1.60.0 +RUST_BOOTSTRAP_VERSION?= 1.61.0 BOOTSTRAPS_SUFFIX?= ${BOOTSTRAPS_SUFFIX_${ARCH}} BOOTSTRAPS_SUFFIX_powerpc64?= -${PPC_ABI:tl} -RUST_BOOTSTRAP_VERSION= 1.61.0 CARGO_VENDOR_DIR?= ${WRKSRC}/vendor |