diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-09-02 10:51:37 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-09-03 17:19:38 +0200 |
commit | 17f0cb3aeb71acd40f137bfc2490ccaaf15f3d99 (patch) | |
tree | 9be11267d0ce9c090beaab30da641a570cad330b /eclass/java-pkg-2.eclass | |
parent | gnustep-base.eclass: Move EXPORT_FUNCTIONS below inherit (diff) | |
download | gentoo-17f0cb3aeb71acd40f137bfc2490ccaaf15f3d99.tar.gz gentoo-17f0cb3aeb71acd40f137bfc2490ccaaf15f3d99.tar.bz2 gentoo-17f0cb3aeb71acd40f137bfc2490ccaaf15f3d99.zip |
java-pkg-2.eclass: Move EXPORT_FUNCTIONS below inherit
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/java-pkg-2.eclass')
-rw-r--r-- | eclass/java-pkg-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/java-pkg-2.eclass b/eclass/java-pkg-2.eclass index 96d33f9d1962..b0573eea4d0b 100644 --- a/eclass/java-pkg-2.eclass +++ b/eclass/java-pkg-2.eclass @@ -18,8 +18,6 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -EXPORT_FUNCTIONS pkg_setup src_prepare src_compile pkg_preinst - if [[ -z ${_JAVA_PKG_2_ECLASS} ]] ; then _JAVA_PKG_2_ECLASS=1 @@ -159,3 +157,5 @@ java-pkg-2_pkg_preinst() { } fi + +EXPORT_FUNCTIONS pkg_setup src_prepare src_compile pkg_preinst |