diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2007-01-28 21:45:38 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2007-01-28 21:45:38 +0000 |
commit | 4d441104fac616b49e6462308e980a786d94f3e9 (patch) | |
tree | 6d93ca650f0a086cfbc3a1aca97c4c444e58bf40 /eclass | |
parent | Use WANT_ANT_TASKS if EANT_ANT_TASKS is not defined. Fixes bug #164315. (diff) | |
download | gentoo-2-4d441104fac616b49e6462308e980a786d94f3e9.tar.gz gentoo-2-4d441104fac616b49e6462308e980a786d94f3e9.tar.bz2 gentoo-2-4d441104fac616b49e6462308e980a786d94f3e9.zip |
Undo last commit because we need to check java-pkg-opt-2 and java-ant-2 usage before adding the automatic dep on ant-core.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-ant-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/java-ant-2.eclass b/eclass/java-ant-2.eclass index 8f78577e2aaa..e198e672292e 100644 --- a/eclass/java-ant-2.eclass +++ b/eclass/java-ant-2.eclass @@ -10,7 +10,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-ant-2.eclass,v 1.15 2007/01/28 21:42:24 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-ant-2.eclass,v 1.16 2007/01/28 21:45:38 betelgeuse Exp $ inherit java-utils-2 @@ -29,7 +29,7 @@ inherit java-utils-2 DEPEND=">=dev-java/javatoolkit-0.1.5 ${JAVA_PKG_PORTAGE_DEP}" # add ant-core into DEPEND, unless disabled -[[ "${JAVA_ANT_DISABLE_ANT_CORE_DEP}" ]] || DEPEND="${DEPEND} dev-java/ant-core" +[[ "${JAVA_ANT_DISABLE_ANT_CORE_DEP:-true}" ]] || DEPEND="${DEPEND} dev-java/ant-core" # add ant tasks specified in WANT_ANT_TASKS to DEPEND local ANT_TASKS_DEPEND; |