commit: bf2176e6eb239a1d1d26fd47116a6bc4571224a4
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 4 15:43:56 2015 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Apr 4 15:43:59 2015 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=bf2176e6
[eclass] Simplify.
The exported function list used to be variable due to new phase functions
introduced in EAPI 3 and later. Since we no longer support earlier EAPIs,
the exported function list is now static and the variable is a relic from an
earlier time.
eclass/cmake-utils.eclass | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass
index 4bc9b44..d240322 100644
--- a/eclass/cmake-utils.eclass
+++ b/eclass/cmake-utils.eclass
@@ -128,8 +128,7 @@ case ${EAPI} in
*) die "EAPI=${EAPI:-0} is not supported" ;;
esac
-CMAKE_EXPF="src_prepare src_configure src_compile src_test src_install"
-EXPORT_FUNCTIONS ${CMAKE_EXPF}
+EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install
case ${CMAKE_MAKEFILE_GENERATOR} in
emake)