From: Anthony G. Basile Date: Sat, 16 Apr 2016 22:18:25 +0000 (-0400) Subject: ssl-cert.eclass: remove = slot operator from DEPEND X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b6bb205ec4b7b4133be3bf7ac9e6f4882fd9b30b;p=gentoo.git ssl-cert.eclass: remove = slot operator from DEPEND It is common practice to include := in DEPENDs even though slot operators are only meaningful in RDEPENDs because one often sees RDEPEND="${DEPEND} ...". However, the scope of DEPEND does not cross the boundary between eclass and inhering ebuild, so that operator is useless here. --- diff --git a/eclass/ssl-cert.eclass b/eclass/ssl-cert.eclass index 002de767fa09..0db29863bc5b 100644 --- a/eclass/ssl-cert.eclass +++ b/eclass/ssl-cert.eclass @@ -30,10 +30,10 @@ if [[ "${SSL_DEPS_SKIP}" == "0" ]]; then if [[ "${SSL_CERT_MANDATORY}" == "0" ]]; then - DEPEND="${SSL_CERT_USE}? ( dev-libs/openssl:0= )" + DEPEND="${SSL_CERT_USE}? ( dev-libs/openssl:0 )" IUSE="${SSL_CERT_USE}" else - DEPEND="dev-libs/openssl:0=" + DEPEND="dev-libs/openssl:0" fi fi