Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 03 Sep 2021 15:20:14
Message-Id: 1630682385.6f6d64526717b7ba36ae78b02ecfb5e8cbfed0a6.ulm@gentoo
1 commit: 6f6d64526717b7ba36ae78b02ecfb5e8cbfed0a6
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 2 08:54:22 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 3 15:19:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f6d6452
7
8 php-ext-source-r3.eclass: Move EXPORT_FUNCTIONS below inherit
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/php-ext-source-r3.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/php-ext-source-r3.eclass b/eclass/php-ext-source-r3.eclass
16 index a782081b72a..556b51ecb0c 100644
17 --- a/eclass/php-ext-source-r3.eclass
18 +++ b/eclass/php-ext-source-r3.eclass
19 @@ -12,8 +12,6 @@
20
21 inherit autotools
22
23 -EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test
24 -
25 case ${EAPI:-0} in
26 6) inherit eapi7-ver ;;
27 7) ;;
28 @@ -461,3 +459,5 @@ php-ext-source-r3_addtoinifiles() {
29 done
30 done
31 }
32 +
33 +EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test