diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-09-02 10:50:15 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-09-03 17:19:36 +0200 |
commit | 72468c7c3b277207358aeb21e5f66f47196a5786 (patch) | |
tree | ce51321b8344c437b31058cd0a1fcba58e6b8ea4 /eclass/apache-module.eclass | |
parent | app-crypt/certbot-nginx: 1.18.0 stable amd64/x86 (diff) | |
download | gentoo-72468c7c3b277207358aeb21e5f66f47196a5786.tar.gz gentoo-72468c7c3b277207358aeb21e5f66f47196a5786.tar.bz2 gentoo-72468c7c3b277207358aeb21e5f66f47196a5786.zip |
apache-module.eclass: Move EXPORT_FUNCTIONS below inherit
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/apache-module.eclass')
-rw-r--r-- | eclass/apache-module.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/apache-module.eclass b/eclass/apache-module.eclass index 2594445c8b4f..60631171ed91 100644 --- a/eclass/apache-module.eclass +++ b/eclass/apache-module.eclass @@ -50,8 +50,6 @@ case ${EAPI} in *) die "EAPI=${EAPI:-0} is not supported" ;; esac -EXPORT_FUNCTIONS src_compile src_install pkg_postinst - if [[ -z ${_APACHE_MODULE_ECLASS} ]]; then _APACHE_MODULE_ECLASS=1 @@ -247,3 +245,5 @@ apache-module_pkg_postinst() { } fi + +EXPORT_FUNCTIONS src_compile src_install pkg_postinst |