diff options
| author | Chris Reffett <creffett@gentoo.org> | 2013-06-13 17:40:48 -0400 |
|---|---|---|
| committer | Chris Reffett <creffett@gentoo.org> | 2013-06-13 17:41:27 -0400 |
| commit | 35409210dc2e7f07d996d45bca962629b5964fc0 (patch) | |
| tree | 36cf791dcd7dc8c2871215c5dba59bcb479b97a6 /eclass | |
| parent | f2b9fc051a7cd4fdf1a4a0da689c82e313efd067 (diff) | |
| download | kde-35409210dc2e7f07d996d45bca962629b5964fc0.tar.gz kde-35409210dc2e7f07d996d45bca962629b5964fc0.tar.bz2 kde-35409210dc2e7f07d996d45bca962629b5964fc0.zip | |
[eclass/cmake-utils.eclass] Fix minor formatting issue, change
deprecation ewarn to eerror.
Diffstat (limited to 'eclass')
| -rw-r--r-- | eclass/cmake-utils.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 1f94d212c4c..d510d4dbf4b 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -64,8 +64,8 @@ inherit toolchain-funcs multilib flag-o-matic eutils CMAKE_EXPF="src_compile src_test src_install" case ${EAPI:-0} in 2|3|4|5) CMAKE_EXPF+=" src_prepare src_configure" ;; - 1|0) ewarn "EAPI 0 and 1 support will be removed soon. If you are the - package maintainer, please update this package to a newer EAPI";; + 1|0) eerror "cmake-utils no longer supports EAPI 0-1." && die + ;; *) die "Unknown EAPI, bug eclass maintainers." ;; esac EXPORT_FUNCTIONS ${CMAKE_EXPF} @@ -378,11 +378,11 @@ enable_cmake-utils_src_prepare() { # @CODE # src_configure() { # local mycmakeargs=( -# $(cmake-utils_use_with openconnect) +# $(cmake-utils_use_with openconnect) # ) # cmake-utils_src_configure # } - + enable_cmake-utils_src_configure() { debug-print-function ${FUNCNAME} "$@" |
