Skip to content

Commit

Permalink
ssl-cert.eclass: remove = slot operator from DEPEND
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
blueness committed Apr 16, 2016
1 parent 8d908c3 commit b6bb205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eclass/ssl-cert.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b6bb205

Please sign in to comment.