Gentoo Archives: gentoo-dev

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-dev@l.g.o
Cc: "Ulrich Müller" <ulm@g.o>
Subject: [gentoo-dev] [PATCH 01/14] apache-module.eclass: Move EXPORT_FUNCTIONS below inherit
Date: Thu, 02 Sep 2021 09:59:32
Message-Id: 20210902095911.25263-1-ulm@gentoo.org
1 Signed-off-by: Ulrich Müller <ulm@g.o>
2 ---
3 eclass/apache-module.eclass | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/eclass/apache-module.eclass b/eclass/apache-module.eclass
7 index 2594445c8b4f..60631171ed91 100644
8 --- a/eclass/apache-module.eclass
9 +++ b/eclass/apache-module.eclass
10 @@ -50,8 +50,6 @@ case ${EAPI} in
11 *) die "EAPI=${EAPI:-0} is not supported" ;;
12 esac
13
14 -EXPORT_FUNCTIONS src_compile src_install pkg_postinst
15 -
16 if [[ -z ${_APACHE_MODULE_ECLASS} ]]; then
17 _APACHE_MODULE_ECLASS=1
18
19 @@ -247,3 +245,5 @@ apache-module_pkg_postinst() {
20 }
21
22 fi
23 +
24 +EXPORT_FUNCTIONS src_compile src_install pkg_postinst
25 --
26 2.33.0

Replies