commit: 8fa29bde8383c39beff6d8f609f744f69df3601d Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Thu Sep 2 08:54:03 2021 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Fri Sep 3 15:19:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fa29bde
php-ext-pecl-r3.eclass: Move EXPORT_FUNCTIONS below inherit Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/php-ext-pecl-r3.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/php-ext-pecl-r3.eclass b/eclass/php-ext-pecl-r3.eclass index f3977b225aa..ccb4bcfc83d 100644 --- a/eclass/php-ext-pecl-r3.eclass +++ b/eclass/php-ext-pecl-r3.eclass @@ -16,8 +16,6 @@ case ${EAPI:-0} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -EXPORT_FUNCTIONS src_install src_test - if [[ -z ${_PHP_EXT_PECL_R3_ECLASS} ]] ; then _PHP_EXT_PECL_R3_ECLASS=1 @@ -96,3 +94,5 @@ php-ext-pecl-r3_src_test() { } fi + +EXPORT_FUNCTIONS src_install src_test