mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
dev-java/tapestry-json: 'mkdir -p target/deps' was missing
The javac command creates the output directory only since java 11.
For openjdk{,-bin}:8 we have to do it in the eclass or ebuild.
Closes: https://bugs.gentoo.org/956115
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Part-of: https://github.com/gentoo/gentoo/pull/42133
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
parent
214ffd13b8
commit
3ae0b9f02b
@ -34,6 +34,7 @@ JAVA_SRC_DIR="tapestry-json/src/main/java"
|
||||
|
||||
src_compile() {
|
||||
# build classes needed for compilation
|
||||
mkdir -p target/deps || die "mkdir" # openjdk:8 doesn't do it.
|
||||
ejavac -d target/deps \
|
||||
-cp "$(java-pkg_getjars --build-only slf4j-api)" \
|
||||
$(find \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user