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 | 877913b54ebef6b59906c05eed9bb176fec5d1a1 (patch) | |
tree | eb6190b43fe69724b30cb931844144b3db185d98 /eclass | |
parent | verson bump thanks to 6thpink <6thpink@terra.es> in bug 142574 (diff) | |
download | historical-877913b54ebef6b59906c05eed9bb176fec5d1a1.tar.gz historical-877913b54ebef6b59906c05eed9bb176fec5d1a1.tar.bz2 historical-877913b54ebef6b59906c05eed9bb176fec5d1a1.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 $? } |