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 D090013835A for ; Tue, 14 Jul 2020 19:05:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C48DE08B0; Tue, 14 Jul 2020 19:05:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D9926E08B0 for ; Tue, 14 Jul 2020 19:05:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 AAB1434F0FE for ; Tue, 14 Jul 2020 19:05:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D90AB2DD for ; Tue, 14 Jul 2020 19:05:33 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1594753518.b2f63173e89037dacacb5e13240a96ca0778e594.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/cadaver/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/cadaver/cadaver-0.23.3.ebuild X-VCS-Directories: net-misc/cadaver/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: b2f63173e89037dacacb5e13240a96ca0778e594 X-VCS-Branch: master Date: Tue, 14 Jul 2020 19:05:33 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7efcb1e7-c131-40c8-9e7e-843292998289 X-Archives-Hash: b6d4fc902846c042338f6644dcc7daa2 commit: b2f63173e89037dacacb5e13240a96ca0778e594 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Tue Jul 14 18:49:24 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Jul 14 19:05:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2f63173 net-misc/cadaver: Avoid -L/usr/lib. -L/usr/lib breaks building with linker LLD. Closes: https://bugs.gentoo.org/731284 Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> net-misc/cadaver/cadaver-0.23.3.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/net-misc/cadaver/cadaver-0.23.3.ebuild b/net-misc/cadaver/cadaver-0.23.3.ebuild index c329d370cd8..e6b4ec10f0a 100644 --- a/net-misc/cadaver/cadaver-0.23.3.ebuild +++ b/net-misc/cadaver/cadaver-0.23.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 2003-2019 Gentoo Authors +# Copyright 2003-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -38,6 +38,5 @@ src_prepare() { src_configure() { econf \ - $(use_enable nls) \ - --with-libs=/usr + $(use_enable nls) }