diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-11-18 22:58:19 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-11-28 20:09:06 +0100 |
commit | e9dc926d4fcb419f04073374095ac1214c0bc0e0 (patch) | |
tree | 2054fe08bc854f316d420d5f0b6eb347de245e83 /eclass/distutils-r1.eclass | |
parent | distutils-r1.eclass: Ban EXAMPLES in EAPI 6 (diff) | |
download | gentoo-e9dc926d4fcb419f04073374095ac1214c0bc0e0.tar.gz gentoo-e9dc926d4fcb419f04073374095ac1214c0bc0e0.tar.bz2 gentoo-e9dc926d4fcb419f04073374095ac1214c0bc0e0.zip |
distutils-r1.eclass: Ban DISTUTILS_NO_PARALLEL_BUILD in EAPI 6
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 1cf2a499d2ad..551bc094e321 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -693,6 +693,8 @@ _distutils-r1_run_foreach_impl() { debug-print-function ${FUNCNAME} "${@}" if [[ ${DISTUTILS_NO_PARALLEL_BUILD} ]]; then + [[ ${EAPI} == [45] ]] || die "DISTUTILS_NO_PARALLEL_BUILD is banned in EAPI ${EAPI}" + eqawarn "DISTUTILS_NO_PARALLEL_BUILD is no longer meaningful. Now all builds" eqawarn "are non-parallel. Please remove it from the ebuild." |