diff options
author | Florian Schmaus <flow@gentoo.org> | 2022-07-23 12:39:53 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-07-23 12:39:53 +0200 |
commit | 96cd7fc7318dba2b0209c709996638b2213972e7 (patch) | |
tree | bb91ba079fb48010a65b041595c5fa362b71845a /eclass/java-maven-2.eclass | |
parent | dev-java/paulscode-codecjorbis: treeclean (diff) | |
download | java-96cd7fc7318dba2b0209c709996638b2213972e7.tar.gz java-96cd7fc7318dba2b0209c709996638b2213972e7.tar.bz2 java-96cd7fc7318dba2b0209c709996638b2213972e7.zip |
java-maven-2.eclass: fix JAVEN_MAVEN_POM_HELPER path
Closes: https://bugs.gentoo.org/237539
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'eclass/java-maven-2.eclass')
-rw-r--r-- | eclass/java-maven-2.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/java-maven-2.eclass b/eclass/java-maven-2.eclass index e096db36..f8f6a2ba 100644 --- a/eclass/java-maven-2.eclass +++ b/eclass/java-maven-2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -101,7 +101,7 @@ esac JAVA_MAVEN_SYSTEM_HOME="/usr/share/maven-${JAVA_MAVEN_VERSION}/maven_home" # our pom helper -JAVA_MAVEN_POM_HELPER="/usr/lib/javatoolkit/bin/maven-helper.py" +JAVA_MAVEN_POM_HELPER="${EROOT}/usr/libexec/javatoolkit/maven-helper.py" # maven 1 and 1.1 share the same repo JAVA_MAVEN_SYSTEM_REPOSITORY="/usr/share/maven-${JAVA_MAVEN_VERSION//1.1/1}/maven_home/gentoo-repo" @@ -623,4 +623,3 @@ java-maven-2_src_install() { } EXPORT_FUNCTIONS src_unpack src_compile src_install - |