summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>2018-10-15 09:12:46 +0200
committerDirkjan Ochtman <djc@gentoo.org>2018-10-15 21:35:53 +0200
commita381a6fc38056ebf7d548445062bd38c3cfa911f (patch)
treec86f9fc22928a3eebfb970b95272a36f896ccbe3 /eclass
parentsci-chemistry/tm-align: stable 20150914 for ppc/ppc64, bug #668654 (diff)
downloadgentoo-a381a6fc38056ebf7d548445062bd38c3cfa911f.tar.gz
gentoo-a381a6fc38056ebf7d548445062bd38c3cfa911f.tar.bz2
gentoo-a381a6fc38056ebf7d548445062bd38c3cfa911f.zip
cargo.eclass: Really set dependencies.
Closes: https://bugs.gentoo.org/668680 Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org> Signed-off-by: Dirkjan Ochtman <djc@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/cargo.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass
index bb27aa315ee2..50f7830c51bc 100644
--- a/eclass/cargo.eclass
+++ b/eclass/cargo.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: cargo.eclass
@@ -16,8 +16,8 @@ CARGO_DEPEND=""
[[ ${CATEGORY}/${PN} != dev-util/cargo ]] && CARGO_DEPEND="virtual/cargo"
case ${EAPI} in
- 6) : DEPEND="${DEPEND} ${CARGO_DEPEND}";;
- 7) : BDEPEND="${BDEPEND} ${CARGO_DEPEND}";;
+ 6) DEPEND="${CARGO_DEPEND}";;
+ 7) BDEPEND="${CARGO_DEPEND}";;
*) die "EAPI=${EAPI:-0} is not supported" ;;
esac