diff options
author | dumbbell <dumbbell@FreeBSD.org> | 2017-09-22 21:57:16 +0800 |
---|---|---|
committer | dumbbell <dumbbell@FreeBSD.org> | 2017-09-22 21:57:16 +0800 |
commit | 357b963023e8bd82bc0c3d4ce422b7d73f99ec59 (patch) | |
tree | 38f1bd2366276c6026159cd463f6acff90c36de8 /Mk | |
parent | e7e7481d0932949f47799f119291479ad53cefa6 (diff) | |
download | freebsd-ports-gnome-357b963023e8bd82bc0c3d4ce422b7d73f99ec59.tar.gz freebsd-ports-gnome-357b963023e8bd82bc0c3d4ce422b7d73f99ec59.tar.zst freebsd-ports-gnome-357b963023e8bd82bc0c3d4ce422b7d73f99ec59.zip |
Mk/Uses/cargo.mk: Fix version of Rust which started to ship Cargo
Cargo started to ship with Rust in 1.19.0_2. I forgot to indicate the
port revision in the 1.19.0_2 commit.
Reported by: jbeich@
Differential Revision: https://reviews.freebsd.org/D12460
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/cargo.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Uses/cargo.mk b/Mk/Uses/cargo.mk index b4ee76204a67..54d4b323ce9c 100644 --- a/Mk/Uses/cargo.mk +++ b/Mk/Uses/cargo.mk @@ -46,7 +46,7 @@ DISTFILES+= ${CARGO_DIST_SUBDIR}/${_crate}.tar.gz:cargo_${_crate:S/-//g:S/.//g} CARGO_BUILDDEP?= yes .if ${CARGO_BUILDDEP:tl} == "yes" -BUILD_DEPENDS+= rust>=1.19.0:lang/rust +BUILD_DEPENDS+= rust>=1.19.0_2:lang/rust .endif # Location of cargo binary (default to lang/rust's Cargo binary) |