diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2016-04-16 18:18:25 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2016-04-16 18:26:08 -0400 |
commit | b6bb205ec4b7b4133be3bf7ac9e6f4882fd9b30b (patch) | |
tree | 2ab2ed5c56811216e9a80289a9caa8076f1ea5b8 /eclass | |
parent | dev-ruby/rspec-rails: Remove ruby19 (diff) | |
download | gentoo-b6bb205ec4b7b4133be3bf7ac9e6f4882fd9b30b.tar.gz gentoo-b6bb205ec4b7b4133be3bf7ac9e6f4882fd9b30b.tar.bz2 gentoo-b6bb205ec4b7b4133be3bf7ac9e6f4882fd9b30b.zip |
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.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ssl-cert.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
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 |