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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7597C158086 for ; Fri, 26 Nov 2021 13:48:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA8932BC018; Fri, 26 Nov 2021 13:48:57 +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 9191D2BC018 for ; Fri, 26 Nov 2021 13:48:57 +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 AA8C6343105 for ; Fri, 26 Nov 2021 13:48:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 439B81C6 for ; Fri, 26 Nov 2021 13:48:55 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1637934533.e52389f284a1d7b45eb7592da38e447dcfd28809.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/pdfbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/pdfbox/pdfbox-2.0.24.ebuild X-VCS-Directories: dev-java/pdfbox/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: e52389f284a1d7b45eb7592da38e447dcfd28809 X-VCS-Branch: master Date: Fri, 26 Nov 2021 13:48:55 +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: d6fa5fff-01b8-48c1-bb10-691ee968e464 X-Archives-Hash: 71f48134cb27fc06a607dde2e14d8349 commit: e52389f284a1d7b45eb7592da38e447dcfd28809 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Fri Nov 26 13:24:58 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Nov 26 13:48:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52389f2 dev-java/pdfbox: fix compile error when "-tools" Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/23089 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/pdfbox/pdfbox-2.0.24.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-java/pdfbox/pdfbox-2.0.24.ebuild b/dev-java/pdfbox/pdfbox-2.0.24.ebuild index 054909d6ce84..c2ae65ec701b 100644 --- a/dev-java/pdfbox/pdfbox-2.0.24.ebuild +++ b/dev-java/pdfbox/pdfbox-2.0.24.ebuild @@ -182,8 +182,8 @@ src_compile() { fi JAVA_SRC_DIR=( - "${S}/pdfbox" - "${S}/debugger" + "${S}/pdfbox/src/main/java" + "${S}/debugger/src/main/java" ) if use tools; then JAVA_SRC_DIR+=( "${S}/tools" )