From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-991645-garchives=archives.gentoo.org@lists.gentoo.org> 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 7C63D139083 for <garchives@archives.gentoo.org>; Wed, 20 Dec 2017 12:12:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B6E4E1017; Wed, 20 Dec 2017 12:12:29 +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 5D029E1017 for <gentoo-commits@lists.gentoo.org>; Wed, 20 Dec 2017 12:12:29 +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 2799D33C1EB for <gentoo-commits@lists.gentoo.org>; Wed, 20 Dec 2017 12:12:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D35DAE84 for <gentoo-commits@lists.gentoo.org>; Wed, 20 Dec 2017 12:12:24 +0000 (UTC) From: "Lars Wendler" <polynomial-c@gentoo.org> 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" <polynomial-c@gentoo.org> Message-ID: <1513771886.6c91a928a8464a211d4a0fe3da76a031f128b704.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/nghttp2/nghttp2-9999.ebuild X-VCS-Directories: net-libs/nghttp2/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 6c91a928a8464a211d4a0fe3da76a031f128b704 X-VCS-Branch: master Date: Wed, 20 Dec 2017 12:12:24 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 07513fd5-ebd2-40c6-8bfd-e61ded106eb2 X-Archives-Hash: f47c5b5890b243ac3933b9d61ac0c648 commit: 6c91a928a8464a211d4a0fe3da76a031f128b704 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Wed Dec 20 12:11:26 2017 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Wed Dec 20 12:11:26 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c91a928 net-libs/nghttp2: Synced live ebuild. Package-Manager: Portage-2.3.19, Repoman-2.3.6 net-libs/nghttp2/nghttp2-9999.ebuild | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/net-libs/nghttp2/nghttp2-9999.ebuild b/net-libs/nghttp2/nghttp2-9999.ebuild index f340b41cdaf..f7c762907e0 100644 --- a/net-libs/nghttp2/nghttp2-9999.ebuild +++ b/net-libs/nghttp2/nghttp2-9999.ebuild @@ -44,24 +44,24 @@ src_prepare() { } multilib_src_configure() { - ECONF_SOURCE=${S} \ - econf \ - --disable-examples \ - --disable-failmalloc \ - --disable-werror \ - --without-cython \ - --disable-python-bindings \ - --without-spdylay \ - $(use_enable cxx asio-lib) \ - $(use_enable debug) \ - $(multilib_native_use_enable hpack-tools) \ - $(use_enable static-libs static) \ - $(use_enable threads) \ - $(multilib_native_use_enable utils app) \ - $(multilib_native_use_with jemalloc) \ + local myeconfargs=( + --disable-examples + --disable-failmalloc + --disable-werror + --without-cython + --disable-python-bindings + $(use_enable cxx asio-lib) + $(use_enable debug) + $(multilib_native_use_enable hpack-tools) + $(use_enable static-libs static) + $(use_enable threads) + $(multilib_native_use_enable utils app) + $(multilib_native_use_with jemalloc) $(multilib_native_use_with xml libxml2) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_install_all() { - use static-libs || find "${ED}" -name '*.la' -delete + use static-libs || find "${ED%/}"/usr -name '*.la' -delete }