From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B20661382C5 for ; Sun, 4 Apr 2021 08:35:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F9ECE07FE; Sun, 4 Apr 2021 08:35:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EADADE07FE for ; Sun, 4 Apr 2021 08:35:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0FADC340A12 for ; Sun, 4 Apr 2021 08:35:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE1E4478 for ; Sun, 4 Apr 2021 08:35:55 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1617525347.913627183767bc7bf5668f2cfd7c412e859c2559.zlogene@gentoo> Subject: [gentoo-commits] proj/tex:master commit in: scripts/texlive/tlpsrc/ X-VCS-Repository: proj/tex X-VCS-Files: scripts/texlive/tlpsrc/texlive-metapost-post-ebuild X-VCS-Directories: scripts/texlive/tlpsrc/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 913627183767bc7bf5668f2cfd7c412e859c2559 X-VCS-Branch: master Date: Sun, 4 Apr 2021 08:35:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b747f58c-2db0-4e42-8e17-2f8659b69b3d X-Archives-Hash: 546a77b85f0df7b07de831e957e7f89c commit: 913627183767bc7bf5668f2cfd7c412e859c2559 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Apr 4 08:35:47 2021 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Apr 4 08:35:47 2021 +0000 URL: https://gitweb.gentoo.org/proj/tex.git/commit/?id=91362718 do not strip slash Signed-off-by: Mikle Kolyada gentoo.org> scripts/texlive/tlpsrc/texlive-metapost-post-ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/texlive/tlpsrc/texlive-metapost-post-ebuild b/scripts/texlive/tlpsrc/texlive-metapost-post-ebuild index 4329cf0..785ef63 100644 --- a/scripts/texlive/tlpsrc/texlive-metapost-post-ebuild +++ b/scripts/texlive/tlpsrc/texlive-metapost-post-ebuild @@ -5,8 +5,8 @@ # created and cause collisions. pkg_setup() { - if [ -f "${ROOT%/}${EPREFIX}/var/lib/texmf/web2c/metapost/mplib-luatex.mem" ]; then + if [ -f "${ROOT}/${EPREFIX}/var/lib/texmf/web2c/metapost/mplib-luatex.mem" ]; then einfo "Removing ${ROOT%/}${EPREFIX}/var/lib/texmf/web2c/metapost/mplib-luatex.mem" - rm -f "${ROOT%/}${EPREFIX}/var/lib/texmf/web2c/metapost/mplib-luatex.mem" + rm -f "${ROOT}/${EPREFIX}/var/lib/texmf/web2c/metapost/mplib-luatex.mem" fi }