diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-09-02 10:54:03 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-09-03 17:19:44 +0200 |
commit | 8fa29bde8383c39beff6d8f609f744f69df3601d (patch) | |
tree | d19dc64098aa8f272843ac1dccb94f233eb1a36e /eclass/php-ext-pecl-r3.eclass | |
parent | mercurial.eclass: Move EXPORT_FUNCTIONS below inherit (diff) | |
download | gentoo-8fa29bde8383c39beff6d8f609f744f69df3601d.tar.gz gentoo-8fa29bde8383c39beff6d8f609f744f69df3601d.tar.bz2 gentoo-8fa29bde8383c39beff6d8f609f744f69df3601d.zip |
php-ext-pecl-r3.eclass: Move EXPORT_FUNCTIONS below inherit
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/php-ext-pecl-r3.eclass')
-rw-r--r-- | eclass/php-ext-pecl-r3.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/php-ext-pecl-r3.eclass b/eclass/php-ext-pecl-r3.eclass index f3977b225aa4..ccb4bcfc83da 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 |