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 B87691396D9 for ; Thu, 9 Nov 2017 04:10:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA75BE0C5F; Thu, 9 Nov 2017 04:10:03 +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 B5BE9E0C5F for ; Thu, 9 Nov 2017 04:10:03 +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 3BF4C33C6B6 for ; Thu, 9 Nov 2017 04:10:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACCC79894 for ; Thu, 9 Nov 2017 04:09:58 +0000 (UTC) From: "Vadim A. Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim A. Misbakh-Soloviov" Message-ID: <1510200582.e39e7974d5b5e207662c272efefde2c653db08e4.mva@gentoo> Subject: [gentoo-commits] proj/lua:master commit in: net-im/prosody/ X-VCS-Repository: proj/lua X-VCS-Files: net-im/prosody/prosody-9999.ebuild X-VCS-Directories: net-im/prosody/ X-VCS-Committer: mva X-VCS-Committer-Name: Vadim A. Misbakh-Soloviov X-VCS-Revision: e39e7974d5b5e207662c272efefde2c653db08e4 X-VCS-Branch: master Date: Thu, 9 Nov 2017 04:09:58 +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: 695745cb-0258-44d1-ac32-63658e6a46b8 X-Archives-Hash: 38a98a729a9dbf70a0d536a23b30be89 commit: e39e7974d5b5e207662c272efefde2c653db08e4 Author: Andrey Utkin gentoo org> AuthorDate: Wed Nov 8 23:03:19 2017 +0000 Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Thu Nov 9 04:09:42 2017 +0000 URL: https://gitweb.gentoo.org/proj/lua.git/commit/?id=e39e7974 net-im/prosody: fix failure at configure Upstream commit 8283:330a8627e41d (configure: Remove unused "require config" option) removed the configure argument which is used by ebuild. This caused emerge failure. net-im/prosody/prosody-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-im/prosody/prosody-9999.ebuild b/net-im/prosody/prosody-9999.ebuild index adce109..a9dafe0 100644 --- a/net-im/prosody/prosody-9999.ebuild +++ b/net-im/prosody/prosody-9999.ebuild @@ -111,7 +111,7 @@ src_configure() { --runwith="${lua}" \ --with-lua-include="$($(tc-getPKG_CONFIG) --variable includedir ${lua})" \ --with-lua-lib="$($(tc-getPKG_CONFIG) --variable libdir ${lua})" \ - --require-config "${myconf[@]}" || die "configure failed" + "${myconf[@]}" || die "configure failed" } src_compile() {