diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-01-27 15:31:20 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-01-28 08:48:10 +0100 |
commit | 516db8d03c893c4a751249dcc8eeb19da2ce05b6 (patch) | |
tree | 94761e66327948c8b44dcefb5bb01dbe5d37f263 /eclass/cuda.eclass | |
parent | cuda.eclass: Use debug-print-function everywhere (diff) | |
download | gentoo-516db8d03c893c4a751249dcc8eeb19da2ce05b6.tar.gz gentoo-516db8d03c893c4a751249dcc8eeb19da2ce05b6.tar.bz2 gentoo-516db8d03c893c4a751249dcc8eeb19da2ce05b6.zip |
cuda.eclass: Enable EAPI=6 support
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'eclass/cuda.eclass')
-rw-r--r-- | eclass/cuda.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/cuda.eclass b/eclass/cuda.eclass index e36d4ca1db9b..f8d7188a9b78 100644 --- a/eclass/cuda.eclass +++ b/eclass/cuda.eclass @@ -137,7 +137,7 @@ cuda_src_prepare() { case "${EAPI:-0}" in 0|1) EXPORT_FUNCTIONS pkg_setup ;; - 2|3|4|5) + 2|3|4|5|6) EXPORT_FUNCTIONS src_prepare ;; *) die "EAPI=${EAPI} is not supported" ;; esac |