diff options
author | Vlastimil Babka <caster@gentoo.org> | 2006-12-20 22:45:18 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2006-12-20 22:45:18 +0000 |
commit | e4c65213305df7cf846e5e0e1e54c42c56b9e2d2 (patch) | |
tree | c5f4031bf5168eef6c7ef05e096f9cf5e7b00780 /eclass | |
parent | New filepicker use flag for firefox (diff) | |
download | gentoo-2-e4c65213305df7cf846e5e0e1e54c42c56b9e2d2.tar.gz gentoo-2-e4c65213305df7cf846e5e0e1e54c42c56b9e2d2.tar.bz2 gentoo-2-e4c65213305df7cf846e5e0e1e54c42c56b9e2d2.zip |
Add -Dnoget=true as default parameter to ant in eant()
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-utils-2.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index b51d24cecb91..a1f3425b8eba 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -6,7 +6,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.35 2006/12/17 14:48:33 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.36 2006/12/20 22:45:18 caster Exp $ # ----------------------------------------------------------------------------- @@ -1341,7 +1341,7 @@ eant() { # "Using eant, but not depending on dev-java/ant or dev-java/ant-core" # fi - local antflags + local antflags="-Dnoget=true" java-pkg_init-compiler_ local compiler="${GENTOO_COMPILER}" @@ -1353,7 +1353,7 @@ eant() { fi if [[ ${compiler} != "javac" ]]; then - antflags="-Dbuild.compiler=${build_compiler}" + antflags="${antflags} -Dbuild.compiler=${build_compiler}" # Figure out any extra stuff to put on the classpath for compilers aside # from javac # ANT_BUILD_COMPILER_DEPS should be something that could be passed to |