From: David Seifert Date: Sat, 8 Feb 2020 16:50:37 +0000 (+0100) Subject: app-portage/elt-patches: [QA] Fix UnnecessarySlashStrip X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9cde6966bce26d5bfe149c2e33a90c59a856debf;p=gentoo.git app-portage/elt-patches: [QA] Fix UnnecessarySlashStrip Signed-off-by: David Seifert --- diff --git a/app-portage/elt-patches/elt-patches-20170815.ebuild b/app-portage/elt-patches/elt-patches-20170815.ebuild index e3277fd1030d..dc6afb3eda28 100644 --- a/app-portage/elt-patches/elt-patches-20170815.ebuild +++ b/app-portage/elt-patches/elt-patches-20170815.ebuild @@ -16,9 +16,9 @@ RDEPEND="sys-apps/gentoo-functions" DEPEND="app-arch/xz-utils" src_compile() { - emake rootprefix="${EPREFIX%/}" libdirname="$(get_libdir)" + emake rootprefix="${EPREFIX}" libdirname="$(get_libdir)" } src_install() { - emake DESTDIR="${D}" rootprefix="${EPREFIX%/}" install + emake DESTDIR="${D}" rootprefix="${EPREFIX}" install } diff --git a/app-portage/elt-patches/elt-patches-20170826.1.ebuild b/app-portage/elt-patches/elt-patches-20170826.1.ebuild index 83c31abb0a3b..69f1f1e61fb5 100644 --- a/app-portage/elt-patches/elt-patches-20170826.1.ebuild +++ b/app-portage/elt-patches/elt-patches-20170826.1.ebuild @@ -16,9 +16,9 @@ RDEPEND="sys-apps/gentoo-functions" DEPEND="app-arch/xz-utils" src_compile() { - emake rootprefix="${EPREFIX%/}" libdirname="$(get_libdir)" + emake rootprefix="${EPREFIX}" libdirname="$(get_libdir)" } src_install() { - emake DESTDIR="${D}" rootprefix="${EPREFIX%/}" install + emake DESTDIR="${D}" rootprefix="${EPREFIX}" install }