diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2022-02-18 13:18:12 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-19 05:12:27 +0000 |
commit | f5a8109b0cff9d4c2193bf80ca583ecc4c7746b0 (patch) | |
tree | 4979c64352cfa48f9cd9cdcb91167fb5ad1416f2 /dev-java/commons-daemon | |
parent | dev-perl/Perl-Tidy: Stabilize 20211029.0.0 x86, #833675 (diff) | |
download | gentoo-f5a8109b0cff9d4c2193bf80ca583ecc4c7746b0.tar.gz gentoo-f5a8109b0cff9d4c2193bf80ca583ecc4c7746b0.tar.bz2 gentoo-f5a8109b0cff9d4c2193bf80ca583ecc4c7746b0.zip |
dev-java/commons-daemon: respect AR
Bug: https://bugs.gentoo.org/833602
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/24248
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-java/commons-daemon')
-rw-r--r-- | dev-java/commons-daemon/commons-daemon-1.2.4.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-java/commons-daemon/commons-daemon-1.2.4.ebuild b/dev-java/commons-daemon/commons-daemon-1.2.4.ebuild index 103bf27e250b..0d7869bd8559 100644 --- a/dev-java/commons-daemon/commons-daemon-1.2.4.ebuild +++ b/dev-java/commons-daemon/commons-daemon-1.2.4.ebuild @@ -10,7 +10,7 @@ JAVA_PKG_IUSE="doc source" MAVEN_ID="commons-daemon:commons-daemon:1.2.4" # JAVA_TESTING_FRAMEWORKS="junit-4" -inherit java-pkg-2 java-pkg-simple +inherit java-pkg-2 java-pkg-simple toolchain-funcs DESCRIPTION="Tools to allow Java programs to run as UNIX daemons" HOMEPAGE="https://commons.apache.org/proper/commons-daemon/" @@ -47,7 +47,7 @@ src_compile() { pushd src/native/unix || die ./configure - emake + emake AR="$(tc-getAR)" popd } |