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:11
Message-Id: 1630682378.3a48c438c804452a0a0a35b7346a031ab23ca6da.ulm@gentoo
1 commit: 3a48c438c804452a0a0a35b7346a031ab23ca6da
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 2 08:51:14 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 3 15:19:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a48c438
7
8 gnustep-base.eclass: Move EXPORT_FUNCTIONS below inherit
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/gnustep-base.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/gnustep-base.eclass b/eclass/gnustep-base.eclass
16 index fb4a48b734c..d37ecad102e 100644
17 --- a/eclass/gnustep-base.eclass
18 +++ b/eclass/gnustep-base.eclass
19 @@ -15,8 +15,6 @@ case ${EAPI:-0} in
20 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
21 esac
22
23 -EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install pkg_postinst
24 -
25 if [[ -z ${_GNUSTEP_BASE_ECLASS} ]] ; then
26 _GNUSTEP_BASE_ECLASS=1
27
28 @@ -263,3 +261,5 @@ EOF
29 }
30
31 fi
32 +
33 +EXPORT_FUNCTIONS src_{prepare,configure,compile,install} pkg_{setup,postinst}