diff options
| author | Michael Palimaka <kensington@gentoo.org> | 2016-01-17 20:56:25 +1100 |
|---|---|---|
| committer | Michael Palimaka <kensington@gentoo.org> | 2016-01-17 20:56:25 +1100 |
| commit | 793a6eb4cc71310ec882d072e67341269eab2607 (patch) | |
| tree | e5a3a6042f68ca4d070abeaef3541f4c7b7b045d /eclass/cmake-utils.eclass | |
| parent | 546b40181517adf67e0da07c95cb784c1cb5c857 (diff) | |
| download | kde-793a6eb4cc71310ec882d072e67341269eab2607.tar.gz kde-793a6eb4cc71310ec882d072e67341269eab2607.tar.bz2 kde-793a6eb4cc71310ec882d072e67341269eab2607.zip | |
cmake-utils.eclass: reverse EAPI logic
Otherwise it will need updating for any new EAPI.
Diffstat (limited to 'eclass/cmake-utils.eclass')
| -rw-r--r-- | eclass/cmake-utils.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index c0f9cc8cf2d..d0df4a2a188 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -428,7 +428,7 @@ enable_cmake-utils_src_prepare() { pushd "${S}" > /dev/null || die - if has "${EAPI:-0}" 6 ; then + if ! has "${EAPI:-0}" 2 3 4 5 ; then default_src_prepare _cleanup_cmake fi |
