From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Havelange Date: Wed, 15 Jan 2020 14:26:11 +0100 Subject: [Buildroot] [PATCH v2 3/9] package/rust-bin: host variant depends on host-cargo-bin In-Reply-To: <20200115132617.26604-1-patrick.havelange@essensium.com> References: <20200115132617.26604-1-patrick.havelange@essensium.com> Message-ID: <20200115132617.26604-3-patrick.havelange@essensium.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net From: Eric Le Bihan Ensure installation of pre-built cargo binary by adding it to the dependency list of the host variant of the pre-built Rust compiler. Signed-off-by: Eric Le Bihan Signed-off-by: Patrick Havelange --- package/rust-bin/rust-bin.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/rust-bin/rust-bin.mk b/package/rust-bin/rust-bin.mk index a374215e20..bef3102450 100644 --- a/package/rust-bin/rust-bin.mk +++ b/package/rust-bin/rust-bin.mk @@ -10,6 +10,7 @@ RUST_BIN_LICENSE = Apache-2.0 or MIT RUST_BIN_LICENSE_FILES = LICENSE-APACHE LICENSE-MIT HOST_RUST_BIN_PROVIDES = host-rustc +HOST_RUST_BIN_DEPENDENCIES = host-cargo-bin HOST_RUST_BIN_SOURCE = rustc-$(RUST_BIN_VERSION)-$(RUSTC_HOST_NAME).tar.xz -- 2.17.1