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 1BBC8138350 for ; Sun, 12 Jan 2020 09:58:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3AFAEE0829; Sun, 12 Jan 2020 09:58:12 +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 1B548E0829 for ; Sun, 12 Jan 2020 09:58:12 +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 79FB934DFA1 for ; Sun, 12 Jan 2020 09:58:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B8CE8E for ; Sun, 12 Jan 2020 09:58:08 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1578823072.03a40516f2329ba7ef0807308da4a677bf0b7ff1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mlt/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mlt/mlt-6.18.0-r1.ebuild X-VCS-Directories: media-libs/mlt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 03a40516f2329ba7ef0807308da4a677bf0b7ff1 X-VCS-Branch: master Date: Sun, 12 Jan 2020 09:58:08 +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: 441fa773-79e7-41df-afae-49eb57dbf4d4 X-Archives-Hash: 7285258f97ecaf521636db5b3c004a5b commit: 03a40516f2329ba7ef0807308da4a677bf0b7ff1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 12 09:57:07 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 12 09:57:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03a40516 media-libs/mlt: Fix sed for ricers Closes: https://bugs.gentoo.org/705080 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/mlt/mlt-6.18.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/mlt/mlt-6.18.0-r1.ebuild b/media-libs/mlt/mlt-6.18.0-r1.ebuild index d7720e0f0a8..b9fd74d531f 100644 --- a/media-libs/mlt/mlt-6.18.0-r1.ebuild +++ b/media-libs/mlt/mlt-6.18.0-r1.ebuild @@ -100,7 +100,7 @@ src_prepare() { # respect CFLAGS LDFLAGS when building shared libraries. Bug #308873 for x in python lua; do - sed -i "/mlt.so/s: -lmlt++ :& ${CFLAGS} ${LDFLAGS} :" src/swig/$x/build || die + sed -i "/mlt.so/s/ -lmlt++ /& ${CFLAGS} ${LDFLAGS} /" src/swig/$x/build || die done sed -i -e "s/env ruby/${USE_RUBY}/" src/swig/ruby/* || die