commit: d3bbaa0c42a43f1dd3526c9b5e9c4b2b4b33a871 Author: Florian Schmaus <flow <AT> gentoo <DOT> org> AuthorDate: Sun Jan 8 10:29:30 2023 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Sun Jan 8 10:29:30 2023 +0000 URL: https://gitweb.gentoo.org/proj/java.git/commit/?id=d3bbaa0c
gradle.eclass: update Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> eclass/gradle.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/gradle.eclass b/eclass/gradle.eclass index a3212626..0261df47 100644 --- a/eclass/gradle.eclass +++ b/eclass/gradle.eclass @@ -6,7 +6,7 @@ # Gentoo Java Project <[email protected]> # @AUTHOR: # Florian Schmaus <[email protected]> -# @BLURB: Utility functions for the gradle build system. +# @BLURB: utility functions for the gradle build system. # @DESCRIPTION: # Utility functions for the gradle build system. @@ -135,11 +135,11 @@ egradle() { --project-cache-dir "${T}/gradle_project_cache" ) - if $EGRADLE_PARALLEL; then + if ${EGRADLE_PARALLEL}; then gradle_args+=( --parallel ) fi - local -x JAVA_TOOL_OPTIONS="-Duser.home=\"$T\"" + local -x JAVA_TOOL_OPTIONS="-Duser.home=\"${T}\"" # TERM needed, otherwise gradle may fail on terms it does not know about TERM=xterm \ edo \
