summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2021-09-02 10:51:14 +0200
committerUlrich Müller <ulm@gentoo.org>2021-09-03 17:19:38 +0200
commit3a48c438c804452a0a0a35b7346a031ab23ca6da (patch)
tree423849aa683822a6f12c60cdc18489cbe55c2df5 /eclass
parentemboss-r2.eclass: Move EXPORT_FUNCTIONS below inherit (diff)
downloadgentoo-3a48c438c804452a0a0a35b7346a031ab23ca6da.tar.gz
gentoo-3a48c438c804452a0a0a35b7346a031ab23ca6da.tar.bz2
gentoo-3a48c438c804452a0a0a35b7346a031ab23ca6da.zip
gnustep-base.eclass: Move EXPORT_FUNCTIONS below inherit
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/gnustep-base.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnustep-base.eclass b/eclass/gnustep-base.eclass
index fb4a48b734cd..d37ecad102e0 100644
--- a/eclass/gnustep-base.eclass
+++ b/eclass/gnustep-base.eclass
@@ -15,8 +15,6 @@ case ${EAPI:-0} in
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac
-EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install pkg_postinst
-
if [[ -z ${_GNUSTEP_BASE_ECLASS} ]] ; then
_GNUSTEP_BASE_ECLASS=1
@@ -263,3 +261,5 @@ EOF
}
fi
+
+EXPORT_FUNCTIONS src_{prepare,configure,compile,install} pkg_{setup,postinst}