From 66afcab271f65b97330e610040ad3acc1b812a03 Mon Sep 17 00:00:00 2001 From: Joerg Bornkessel Date: Sat, 7 May 2016 23:18:48 +0200 Subject: [PATCH] fixed einstall vs. emake install for eapi=6 --- eclass/vdr-plugin-2.eclass | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass index ae09a346439b..65f1409018c4 100644 --- a/eclass/vdr-plugin-2.eclass +++ b/eclass/vdr-plugin-2.eclass @@ -571,7 +571,11 @@ vdr-plugin-2_src_install() { local SOFILE_STRING=$(grep SOFILE Makefile) if [[ -n ${SOFILE_STRING} ]]; then BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-install }} - einstall ${BUILD_PARAMS} \ + if [[ ${EAPI} == 6 ]]; then + emake install ${BUILD_PARAMS} \ + else + einstall ${BUILD_PARAMS} \ + fi ${BUILD_TARGETS} \ TMPDIR="${T}" \ DESTDIR="${D}" \ -- 2.26.2