From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AA50215800F for ; Sun, 8 Jan 2023 10:29:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 006C5E041F; Sun, 8 Jan 2023 10:29:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6D9FE041F for ; Sun, 8 Jan 2023 10:29:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8CA7340CC3 for ; Sun, 8 Jan 2023 10:29:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5123576B for ; Sun, 8 Jan 2023 10:29:40 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1673173770.d3bbaa0c42a43f1dd3526c9b5e9c4b2b4b33a871.flow@gentoo> Subject: [gentoo-commits] proj/java:master commit in: eclass/ X-VCS-Repository: proj/java X-VCS-Files: eclass/gradle.eclass X-VCS-Directories: eclass/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: d3bbaa0c42a43f1dd3526c9b5e9c4b2b4b33a871 X-VCS-Branch: master Date: Sun, 8 Jan 2023 10:29:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c83c0449-a9f7-4e45-af62-84810e4590d0 X-Archives-Hash: 363ca80941452944ce9097be4e051ff3 commit: d3bbaa0c42a43f1dd3526c9b5e9c4b2b4b33a871 Author: Florian Schmaus gentoo org> AuthorDate: Sun Jan 8 10:29:30 2023 +0000 Commit: Florian Schmaus gentoo 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 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 # @AUTHOR: # Florian Schmaus -# @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 \