diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-09-02 10:51:49 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-09-03 17:19:39 +0200 |
commit | b930f121069ae53a3543b6356a4bf149691c7f38 (patch) | |
tree | 7346ccbb813baa003f1ce508c72d9ad12e13165a /eclass | |
parent | java-pkg-2.eclass: Move EXPORT_FUNCTIONS below inherit (diff) | |
download | gentoo-b930f121069ae53a3543b6356a4bf149691c7f38.tar.gz gentoo-b930f121069ae53a3543b6356a4bf149691c7f38.tar.bz2 gentoo-b930f121069ae53a3543b6356a4bf149691c7f38.zip |
java-pkg-opt-2.eclass: Move EXPORT_FUNCTIONS below inherit
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-pkg-opt-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/java-pkg-opt-2.eclass b/eclass/java-pkg-opt-2.eclass index 85783bae6e2d..79833c98ea6b 100644 --- a/eclass/java-pkg-opt-2.eclass +++ b/eclass/java-pkg-opt-2.eclass @@ -18,8 +18,6 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -EXPORT_FUNCTIONS pkg_setup src_prepare pkg_preinst - if [[ -z ${_JAVA_PKG_OPT_2_ECLASS} ]] ; then _JAVA_PKG_OPT_2_ECLASS=1 @@ -67,3 +65,5 @@ java-pkg-opt-2_pkg_preinst() { } fi + +EXPORT_FUNCTIONS pkg_setup src_prepare pkg_preinst |