From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 080FC13829C for ; Mon, 30 May 2016 12:50:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 594131423A; Mon, 30 May 2016 12:50:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 064CB1423A for ; Mon, 30 May 2016 12:50:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B135F340890 for ; Mon, 30 May 2016 12:50:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09E8195D for ; Mon, 30 May 2016 12:50:10 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1464612606.0291d475ba94dccc0a85b905e1b2f87a0364f85f.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/rtmpdump/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild media-video/rtmpdump/rtmpdump-9999.ebuild X-VCS-Directories: media-video/rtmpdump/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 0291d475ba94dccc0a85b905e1b2f87a0364f85f X-VCS-Branch: master Date: Mon, 30 May 2016 12:50:10 +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-Archives-Salt: f0826015-5bd6-4442-81d5-aad91baed1ce X-Archives-Hash: 2dd91720529805b7efe6086ba9e49d2f commit: 0291d475ba94dccc0a85b905e1b2f87a0364f85f Author: Lars Wendler gentoo org> AuthorDate: Mon May 30 12:49:52 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon May 30 12:50:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0291d475 media-video/rtmpdump: Fixed broken sed command (bug #584498). Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild | 2 +- media-video/rtmpdump/rtmpdump-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild b/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild index 6d20b3c..5e9d26c 100644 --- a/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild +++ b/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild @@ -59,7 +59,7 @@ multilib_src_compile() { fi fi #fix multilib-script support. Bug #327449 - sed -i "/^libdir/s:lib$:$(get_libdir)$:" librtmp/Makefile || die + sed -i "/^libdir/s:lib$:$(get_libdir):" librtmp/Makefile || die if ! multilib_is_native_abi; then cd librtmp || die fi diff --git a/media-video/rtmpdump/rtmpdump-9999.ebuild b/media-video/rtmpdump/rtmpdump-9999.ebuild index c8bc9ac..25d5e75 100644 --- a/media-video/rtmpdump/rtmpdump-9999.ebuild +++ b/media-video/rtmpdump/rtmpdump-9999.ebuild @@ -53,7 +53,7 @@ multilib_src_compile() { fi fi #fix multilib-script support. Bug #327449 - sed -i "/^libdir/s:lib$:$(get_libdir)$:" librtmp/Makefile || die + sed -i "/^libdir/s:lib$:$(get_libdir):" librtmp/Makefile || die if ! multilib_is_native_abi; then cd librtmp || die fi