Received: by mail.netbsd.org (Postfix, from userid 605) id 8B99684DA8; Mon, 2 Sep 2019 20:28:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1056A84DA7 for ; Mon, 2 Sep 2019 20:28:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id EFiDznvQjGPN for ; Mon, 2 Sep 2019 20:28:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 67C0A84D47 for ; Mon, 2 Sep 2019 20:28:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5F53BFBF4; Mon, 2 Sep 2019 20:28:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15674561147640" MIME-Version: 1.0 Date: Mon, 2 Sep 2019 20:28:34 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/MesaLib To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190902202834.5F53BFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15674561147640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Sep 2 20:28:34 UTC 2019 Modified Files: pkgsrc/graphics/MesaLib: Makefile Log Message: MesaLib: build-id is a linker arg so needs -Wl, oops To generate a diff of this commit: cvs rdiff -u -r1.161 -r1.162 pkgsrc/graphics/MesaLib/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15674561147640 Content-Disposition: inline Content-Length: 836 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/MesaLib/Makefile diff -u pkgsrc/graphics/MesaLib/Makefile:1.161 pkgsrc/graphics/MesaLib/Makefile:1.162 --- pkgsrc/graphics/MesaLib/Makefile:1.161 Mon Sep 2 19:43:06 2019 +++ pkgsrc/graphics/MesaLib/Makefile Mon Sep 2 20:28:34 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.161 2019/09/02 19:43:06 nia Exp $ +# $NetBSD: Makefile,v 1.162 2019/09/02 20:28:34 nia Exp $ DISTNAME= mesa-19.1.5 PKGNAME= ${DISTNAME:S/mesa/MesaLib/} @@ -152,7 +152,7 @@ CPPFLAGS+= -DHAVE_NOATEXIT CPPFLAGS+= -DSYSCONFDIR=${PKG_SYSCONFDIR} BUILDLINK_TRANSFORM+= rm:-Werror=return-type -BUILDLINK_TRANSFORM.SunOS+= rm:--build-id=sha1 +BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,--build-id=sha1 # Work around Xorg segfaulting in radeon driver due to wrong alloca being used CFLAGS.NetBSD+= -Dalloca=__builtin_alloca --_----------=_15674561147640--