Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsrtp/
Date: Fri, 11 Aug 2017 13:21:07
Message-Id: 1502457640.a07b756bc31bcd4cc283494fdde4f092a060684f.mgorny@gentoo
1 commit: a07b756bc31bcd4cc283494fdde4f092a060684f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 9 15:34:24 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 11 13:20:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a07b756b
7
8 net-libs/libsrtp: Fix post-test libsrtp2.a rm, #600946
9
10 net-libs/libsrtp/libsrtp-2.0.0.ebuild | 6 +++---
11 1 file changed, 3 insertions(+), 3 deletions(-)
12
13 diff --git a/net-libs/libsrtp/libsrtp-2.0.0.ebuild b/net-libs/libsrtp/libsrtp-2.0.0.ebuild
14 index 9e282218d75..828aec3146b 100644
15 --- a/net-libs/libsrtp/libsrtp-2.0.0.ebuild
16 +++ b/net-libs/libsrtp/libsrtp-2.0.0.ebuild
17 @@ -1,4 +1,4 @@
18 -# Copyright 1999-2015 Gentoo Foundation
19 +# Copyright 1999-2017 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=6
23 @@ -59,9 +59,9 @@ src_compile() {
24 src_test() {
25 LD_LIBRARY_PATH="${S}" emake -j1 runtest
26
27 - # Makefile.in has '$(testapp): libsrtp.a'
28 + # Makefile.in has '$(testapp): libsrtp2.a'
29 if use !static-libs; then
30 - rm libsrtp.a || die
31 + rm libsrtp2.a || die
32 fi
33 }