diff options
author | 2023-01-08 11:29:30 +0100 | |
---|---|---|
committer | 2023-01-08 11:29:30 +0100 | |
commit | d3bbaa0c42a43f1dd3526c9b5e9c4b2b4b33a871 (patch) | |
tree | 100f450fc84bad2ba76d1fcb1722450757b8c1bd | |
parent | dev-java/openjfx: re-add "unset ANT_HOME" (diff) | |
download | java-d3bbaa0c42a43f1dd3526c9b5e9c4b2b4b33a871.tar.gz java-d3bbaa0c42a43f1dd3526c9b5e9c4b2b4b33a871.tar.bz2 java-d3bbaa0c42a43f1dd3526c9b5e9c4b2b4b33a871.zip |
gradle.eclass: update
Signed-off-by: Florian Schmaus <flow@gentoo.org>
-rw-r--r-- | eclass/gradle.eclass | 6 |
1 files 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 <java@gentoo.org> # @AUTHOR: # Florian Schmaus <flow@gentoo.org> -# @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 \ |