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 0341A15808B for ; Sun, 10 Apr 2022 10:47:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74DE5E0955; Sun, 10 Apr 2022 10:47:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 09D56E0928 for ; Sun, 10 Apr 2022 10:47:00 +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 9D76634113C for ; Sun, 10 Apr 2022 10:46:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 015E93AA for ; Sun, 10 Apr 2022 10:46:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1649587603.a7aafd030a86bbbad39e1ccb7c86976cbe54a7e0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libreoffice/libreoffice-7.3.2.2.ebuild app-office/libreoffice/libreoffice-7.3.9999.ebuild app-office/libreoffice/libreoffice-9999.ebuild X-VCS-Directories: app-office/libreoffice/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a7aafd030a86bbbad39e1ccb7c86976cbe54a7e0 X-VCS-Branch: master Date: Sun, 10 Apr 2022 10:46:54 +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: a8a0e5a5-60a6-4416-b87d-aef6192a8217 X-Archives-Hash: 914ba155ae2ab94054dae68e9fcb26d3 commit: a7aafd030a86bbbad39e1ccb7c86976cbe54a7e0 Author: Sam James gentoo org> AuthorDate: Sun Apr 10 10:45:41 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 10 10:46:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7aafd03 app-office/libreoffice: fix jdk-home typo Closes: https://bugs.gentoo.org/837587 Signed-off-by: Sam James gentoo.org> app-office/libreoffice/libreoffice-7.3.2.2.ebuild | 4 ++-- app-office/libreoffice/libreoffice-7.3.9999.ebuild | 4 ++-- app-office/libreoffice/libreoffice-9999.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app-office/libreoffice/libreoffice-7.3.2.2.ebuild b/app-office/libreoffice/libreoffice-7.3.2.2.ebuild index 9f5a7ab0de81..a516928958fc 100644 --- a/app-office/libreoffice/libreoffice-7.3.2.2.ebuild +++ b/app-office/libreoffice/libreoffice-7.3.2.2.ebuild @@ -570,9 +570,9 @@ src_configure() { --with-ant-home="${ANT_HOME}" ) if has_version "dev-java/openjdk:11"; then - myeconfargs+=( -with-jdk-home="${EPREFIX}/usr/$(get_libdir)/openjdk-11" ) + myeconfargs+=( --with-jdk-home="${EPREFIX}/usr/$(get_libdir)/openjdk-11" ) elif has_version "dev-java/openjdk-bin:11"; then - myeconfargs+=( --with-jdk-home="/opt/openjdk-bin-11" ) + myeconfargs+=( --with-jdk-home="${EPREFIX}/opt/openjdk-bin-11" ) fi use libreoffice_extensions_scripting-beanshell && \ diff --git a/app-office/libreoffice/libreoffice-7.3.9999.ebuild b/app-office/libreoffice/libreoffice-7.3.9999.ebuild index 0f7170a5e44e..6b265eb5bf1e 100644 --- a/app-office/libreoffice/libreoffice-7.3.9999.ebuild +++ b/app-office/libreoffice/libreoffice-7.3.9999.ebuild @@ -567,9 +567,9 @@ src_configure() { --with-ant-home="${ANT_HOME}" ) if has_version "dev-java/openjdk:11"; then - myeconfargs+=( -with-jdk-home="${EPREFIX}/usr/$(get_libdir)/openjdk-11" ) + myeconfargs+=( --with-jdk-home="${EPREFIX}/usr/$(get_libdir)/openjdk-11" ) elif has_version "dev-java/openjdk-bin:11"; then - myeconfargs+=( --with-jdk-home="/opt/openjdk-bin-11" ) + myeconfargs+=( --with-jdk-home="${EPREFIX}/opt/openjdk-bin-11" ) fi use libreoffice_extensions_scripting-beanshell && \ diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index a30d4d21bfbd..73154bc2f905 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -567,9 +567,9 @@ src_configure() { --with-ant-home="${ANT_HOME}" ) if has_version "dev-java/openjdk:11"; then - myeconfargs+=( -with-jdk-home="${EPREFIX}/usr/$(get_libdir)/openjdk-11" ) + myeconfargs+=( --with-jdk-home="${EPREFIX}/usr/$(get_libdir)/openjdk-11" ) elif has_version "dev-java/openjdk-bin:11"; then - myeconfargs+=( --with-jdk-home="/opt/openjdk-bin-11" ) + myeconfargs+=( --with-jdk-home="${EPREFIX}/opt/openjdk-bin-11" ) fi use libreoffice_extensions_scripting-beanshell && \