diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-09-02 10:50:59 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-09-03 17:19:37 +0200 |
commit | e309eb1e8d7b758530b154747f89c2577769cc63 (patch) | |
tree | a68c742308d7f76d563d6d19664136817ba1a275 /eclass | |
parent | apache-module.eclass: Move EXPORT_FUNCTIONS below inherit (diff) | |
download | gentoo-e309eb1e8d7b758530b154747f89c2577769cc63.tar.gz gentoo-e309eb1e8d7b758530b154747f89c2577769cc63.tar.bz2 gentoo-e309eb1e8d7b758530b154747f89c2577769cc63.zip |
emboss-r2.eclass: Move EXPORT_FUNCTIONS below inherit
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/emboss-r2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/emboss-r2.eclass b/eclass/emboss-r2.eclass index 680b7b7e4d61..bcab338ad614 100644 --- a/eclass/emboss-r2.eclass +++ b/eclass/emboss-r2.eclass @@ -40,8 +40,6 @@ case ${EAPI:-0} in *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" ;; esac -EXPORT_FUNCTIONS src_prepare src_configure src_install - if [[ ! ${_EMBOSS_R2_ECLASS} ]]; then _EMBOSS_R2_ECLASS=1 @@ -156,3 +154,5 @@ emboss-r2_src_install() { } fi + +EXPORT_FUNCTIONS src_prepare src_configure src_install |