diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2006-08-05 20:33:27 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2006-08-05 20:33:27 +0000 |
commit | 42908fabf163033491ec0d0e8c83462b6102d037 (patch) | |
tree | 1f1098a5ce776ca1d568f888d33a6df32569893b /eclass | |
parent | Adding perl dep; fixed header; fixed DEPEND (diff) | |
download | gentoo-2-42908fabf163033491ec0d0e8c83462b6102d037.tar.gz gentoo-2-42908fabf163033491ec0d0e8c83462b6102d037.tar.bz2 gentoo-2-42908fabf163033491ec0d0e8c83462b6102d037.zip |
Fixed is-java-strict to respect FEATURES=-java-strict
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-utils-2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index 36e126d53833..444b88a38cfe 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -1834,7 +1834,7 @@ increment-qa-violations() { } is-java-strict() { - hasq java-strict ${FEATURES}; + hasq java-strict ${FEATURES} && ! hasq -java-strict ${FEATURES} return $? } |