diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-04-02 12:43:32 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-04-02 12:51:21 -0700 |
commit | 12a28a4becb51cfbfb7fc3114869ef1838293f46 (patch) | |
tree | 76f6bdfc1eb664ce2cf701091756b85d4f8d3c55 /eclass | |
parent | xorg-3.eclass: Drop app-doc/doxygen as a doc dependency (diff) | |
download | gentoo-12a28a4becb51cfbfb7fc3114869ef1838293f46.tar.gz gentoo-12a28a4becb51cfbfb7fc3114869ef1838293f46.tar.bz2 gentoo-12a28a4becb51cfbfb7fc3114869ef1838293f46.zip |
xorg-3.eclass: Drop EXPORTED_FUNCTIONS variable
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xorg-3.eclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass index 81dd684e6fcf..fa2731585429 100644 --- a/eclass/xorg-3.eclass +++ b/eclass/xorg-3.eclass @@ -57,14 +57,13 @@ if [[ ${XORG_MULTILIB} == yes ]]; then inherit multilib-minimal fi -EXPORTED_FUNCTIONS="src_prepare src_configure src_unpack src_compile src_install pkg_postinst pkg_postrm" case "${EAPI:-0}" in [7-8]) ;; *) die "EAPI=${EAPI} is not supported" ;; esac # exports must be ALWAYS after inherit -EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} +EXPORT_FUNCTIONS src_prepare src_configure src_unpack src_compile src_install pkg_postinst pkg_postrm IUSE="" |