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 5B662138262 for ; Sun, 22 May 2016 22:18:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AED2C22404E; Sun, 22 May 2016 22:18:00 +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 5157C22404E for ; Sun, 22 May 2016 22:18:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 33A14340BE2 for ; Sun, 22 May 2016 22:17:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73646968 for ; Sun, 22 May 2016 22:17:57 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1463955463.448729f6b3a2484a681d00bccbeece0e24fd7ca5.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/alsa-lib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/alsa-lib/alsa-lib-1.1.1.ebuild X-VCS-Directories: media-libs/alsa-lib/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 448729f6b3a2484a681d00bccbeece0e24fd7ca5 X-VCS-Branch: master Date: Sun, 22 May 2016 22:17:57 +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: ce47b641-1962-4765-b0ac-2ea2762df603 X-Archives-Hash: 136beb8aadd4f2a0b4dd56020bccebf9 commit: 448729f6b3a2484a681d00bccbeece0e24fd7ca5 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun May 22 22:17:34 2016 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun May 22 22:17:43 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448729f6 media-libs/alsa-lib: tweak FEATURES=test from failing, bug #545950 The test happened to fail only on systems without alsa-lib installed (any fresh stage3). Reported-by: eroen Bug: https://bugs.gentoo.org/545950 Package-Manager: portage-2.3.0_rc1 media-libs/alsa-lib/alsa-lib-1.1.1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/media-libs/alsa-lib/alsa-lib-1.1.1.ebuild b/media-libs/alsa-lib/alsa-lib-1.1.1.ebuild index bd7a02a..ce74768 100644 --- a/media-libs/alsa-lib/alsa-lib-1.1.1.ebuild +++ b/media-libs/alsa-lib/alsa-lib-1.1.1.ebuild @@ -36,6 +36,8 @@ src_prepare() { find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || die # https://bugs.gentoo.org/509886 use elibc_uclibc && { sed -i -e 's:oldapi queue_timer:queue_timer:' test/Makefile.am || die; } + # https://bugs.gentoo.org/545950 + sed -i -e '5s:^$:\nAM_CPPFLAGS = -I$(top_srcdir)/include:' test/lsb/Makefile.am || die default eautoreconf }