diff options
| author | Eric Le Bihan <eric.le.bihan.dev@free.fr> | 2018-02-13 08:21:27 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-02-13 23:09:47 +0100 |
| commit | f69c5192679de30e8af99885c6cd487e12ff0a25 (patch) | |
| tree | a671e308488f400bc230d353089d9ca51f0adf65 /package/cargo-bin | |
| parent | eb303348b51a863804941e81fcb821d9fb1077cf (diff) | |
| download | buildroot-f69c5192679de30e8af99885c6cd487e12ff0a25.tar.gz buildroot-f69c5192679de30e8af99885c6cd487e12ff0a25.zip | |
rustc: use RUSTC_{HOST,TARGET}_NAME
utils/check-package complains as follows:
package/rustc/rustc.mk:10: possible typo: RUST_TARGET_NAME -> *RUSTC*
package/rustc/rustc.mk:18: possible typo: RUST_HOST_NAME -> *RUSTC*
As RUST_{HOST,TARGET}_NAME are related to the Rust compiler, it
sounds sensible to rename them to RUSTC_{HOST,TARGET}_NAME.
So update all rust related packages to use the new variables.
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/cargo-bin')
| -rw-r--r-- | package/cargo-bin/cargo-bin.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/cargo-bin/cargo-bin.mk b/package/cargo-bin/cargo-bin.mk index 0f235748ff..3c834d9033 100644 --- a/package/cargo-bin/cargo-bin.mk +++ b/package/cargo-bin/cargo-bin.mk @@ -6,7 +6,7 @@ CARGO_BIN_VERSION = 0.24.0 CARGO_BIN_SITE = https://static.rust-lang.org/dist -CARGO_BIN_SOURCE = cargo-$(CARGO_BIN_VERSION)-$(RUST_HOST_NAME).tar.xz +CARGO_BIN_SOURCE = cargo-$(CARGO_BIN_VERSION)-$(RUSTC_HOST_NAME).tar.xz CARGO_BIN_LICENSE = Apache-2.0 or MIT CARGO_BIN_LICENSE_FILES = LICENSE-APACHE LICENSE-MIT |

