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 CF86A138334 for ; Fri, 17 May 2019 19:35:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6160E0875; Fri, 17 May 2019 19:35:57 +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 AAC01E0875 for ; Fri, 17 May 2019 19:35:57 +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 0AA2A3449D1 for ; Fri, 17 May 2019 19:35:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 615BD5F2 for ; Fri, 17 May 2019 19:35:52 +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: <1558121608.824c1e88cd71e21c0bb5c110e6ae035dabed6459.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/crda/files/, net-wireless/crda/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/crda/crda-3.18-r3.ebuild net-wireless/crda/files/crda-3.18-ldflags.patch X-VCS-Directories: net-wireless/crda/ net-wireless/crda/files/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 824c1e88cd71e21c0bb5c110e6ae035dabed6459 X-VCS-Branch: master Date: Fri, 17 May 2019 19:35:52 +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: 9756db69-54c7-4527-95d2-bed00681dc72 X-Archives-Hash: db590d78d04abfd5ebe3772fb121b6db commit: 824c1e88cd71e21c0bb5c110e6ae035dabed6459 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Thu Feb 21 01:59:39 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri May 17 19:33:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=824c1e88 net-wireless/crda: Respect LDFLAGS. Fixes: https://bugs.gentoo.org/678450 Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> net-wireless/crda/crda-3.18-r3.ebuild | 3 ++- net-wireless/crda/files/crda-3.18-ldflags.patch | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/net-wireless/crda/crda-3.18-r3.ebuild b/net-wireless/crda/crda-3.18-r3.ebuild index dd11f3fcc89..a4dd9134d4b 100644 --- a/net-wireless/crda/crda-3.18-r3.ebuild +++ b/net-wireless/crda/crda-3.18-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 2008-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -39,6 +39,7 @@ PATCHES=( "${FILESDIR}"/${PN}-3.18-libreg-link.patch #542436 "${FILESDIR}"/${PN}-3.18-openssl-1.1.0-compatibility.patch #652428 "${FILESDIR}"/${PN}-3.18-libressl.patch + "${FILESDIR}"/${PN}-3.18-ldflags.patch ) src_prepare() { diff --git a/net-wireless/crda/files/crda-3.18-ldflags.patch b/net-wireless/crda/files/crda-3.18-ldflags.patch new file mode 100644 index 00000000000..5ba9165c7ad --- /dev/null +++ b/net-wireless/crda/files/crda-3.18-ldflags.patch @@ -0,0 +1,11 @@ +--- /Makefile ++++ /Makefile +@@ -115,7 +115,7 @@ + + $(LIBREG): regdb.h reglib.h reglib.c + $(NQ) ' CC ' $@ +- $(Q)$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -shared -Wl,-soname,$(LIBREG) $^ $(filter-out -lreg,$(LDLIBS)) ++ $(Q)$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ -shared -Wl,-soname,$(LIBREG) $^ $(filter-out -lreg,$(LDLIBS)) + + install-libreg-headers: + $(NQ) ' INSTALL libreg-headers'