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 2A4391382C5 for ; Tue, 16 Jun 2020 14:12:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E5E8E0D88; Tue, 16 Jun 2020 14:12:29 +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 45F16E0D88 for ; Tue, 16 Jun 2020 14:12:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 61BFF34F2AE for ; Tue, 16 Jun 2020 14:12:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B9DB2A2 for ; Tue, 16 Jun 2020 14:12:24 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1592316700.cde4c3bbdd4975a33d7e0a4ef37727ca5c90d463.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmoe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmoe/libmoe-1.5.8-r3.ebuild X-VCS-Directories: dev-libs/libmoe/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: cde4c3bbdd4975a33d7e0a4ef37727ca5c90d463 X-VCS-Branch: master Date: Tue, 16 Jun 2020 14:12:24 +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: 408e8fb9-bea5-44c4-9d92-1f76149e2b07 X-Archives-Hash: 2e95faecdc24e1c96ac224f586da8d44 commit: cde4c3bbdd4975a33d7e0a4ef37727ca5c90d463 Author: Akinori Hattori gentoo org> AuthorDate: Tue Jun 16 14:05:03 2020 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Tue Jun 16 14:11:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cde4c3bb dev-libs/libmoe: fix sed Closes: https://bugs.gentoo.org/710562 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Akinori Hattori gentoo.org> dev-libs/libmoe/libmoe-1.5.8-r3.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-libs/libmoe/libmoe-1.5.8-r3.ebuild b/dev-libs/libmoe/libmoe-1.5.8-r3.ebuild index 41ed7a8019e..b9af0de0382 100644 --- a/dev-libs/libmoe/libmoe-1.5.8-r3.ebuild +++ b/dev-libs/libmoe/libmoe-1.5.8-r3.ebuild @@ -27,10 +27,10 @@ src_prepare() { default sed -i \ - -e "/^PREFIX=/s:=.*:=${EPREFIX}/usr:" \ - -e "/^LIBSODIR=/s:=.*:=\$\{PREFIX}/$(get_libdir):" \ - -e "/^MANDIR=/s:=.*:=\$\{PREFIX}/share/man:" \ - -e "s:=gcc:=$(tc-getCC):" \ - -e "/^AR=/s:=ar:=$(tc-getAR):" \ + -e "/^PREFIX=/s|=.*|=${EPREFIX}/usr|" \ + -e "/^LIBSODIR=/s|=.*|=\${PREFIX}/$(get_libdir)|" \ + -e "/^MANDIR=/s|=.*|=\${PREFIX}/share/man|" \ + -e "s|=gcc|=$(tc-getCC)|" \ + -e "/^AR=/s|=ar|=$(tc-getAR)|" \ Makefile || die }