commit: 41c6bbf6ad278aa0a2b7b85c76c240a9135f9e21
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 21 21:27:37 2019 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Jan 21 21:28:02 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41c6bbf6
java-utils-2.eclass: fix for >=dev-java/ant-core-1.9.13
ant does not like double quotes around classpath (bug #676002)
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
eclass/java-utils-2.eclass | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass
index 473b177e539..1ffd7a03399 100644
--- a/eclass/java-utils-2.eclass
+++ b/eclass/java-utils-2.eclass
@@ -2029,7 +2029,9 @@ eant() {
if [[ ${cp#:} ]]; then
# It seems ant does not like single quotes around ${cp}
- antflags="${antflags} -Dgentoo.classpath=\"${cp#:}\""
+ # And ant 1.9.13+ also does not like double quotes around ${cp}
+ # https://bz.apache.org/bugzilla/show_bug.cgi?id=58898
+ antflags="${antflags} -Dgentoo.classpath=${cp#:}"
fi
[[ -n ${JAVA_PKG_DEBUG} ]] && echo ant ${antflags} "${@}"