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 5271A1396D0 for ; Mon, 11 Sep 2017 21:55:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EB6F1FC007; Mon, 11 Sep 2017 21:55:53 +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 7F0131FC007 for ; Mon, 11 Sep 2017 21:55:53 +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 998E0341738 for ; Mon, 11 Sep 2017 21:55:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D289906C for ; Mon, 11 Sep 2017 21:55:51 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1505166900.058099585033e5da7ab9cb7f47fc630e983a4527.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pulseaudio/pulseaudio-11.0.ebuild X-VCS-Directories: media-sound/pulseaudio/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 058099585033e5da7ab9cb7f47fc630e983a4527 X-VCS-Branch: master Date: Mon, 11 Sep 2017 21:55:51 +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: ed7a789e-dc8e-4b34-aa8a-91773607bebc X-Archives-Hash: 7f537ee3c2ea17858af7db843e8cca9a commit: 058099585033e5da7ab9cb7f47fc630e983a4527 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Mon Sep 11 21:48:16 2017 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Mon Sep 11 21:55:00 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05809958 media-sound/pulseaudio: fix multilib build issue with USE=-glib, bug #603392 Package-Manager: Portage-2.3.8, Repoman-2.3.3 media-sound/pulseaudio/pulseaudio-11.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-sound/pulseaudio/pulseaudio-11.0.ebuild b/media-sound/pulseaudio/pulseaudio-11.0.ebuild index 54df4e0b7f5..9ca990d0710 100644 --- a/media-sound/pulseaudio/pulseaudio-11.0.ebuild +++ b/media-sound/pulseaudio/pulseaudio-11.0.ebuild @@ -255,9 +255,9 @@ multilib_src_compile() { emake use doc && emake doxygen else - local targets=( libpulse.la libpulse-simple.la ) + local targets=( libpulse.la libpulsedsp.la libpulse-simple.la ) use glib && targets+=( libpulse-mainloop-glib.la ) - emake -C src libpulse{,dsp,-simple,-mainloop-glib}.la + emake -C src ${targets[*]} fi }