Received: by mail.netbsd.org (Postfix, from userid 605) id CC2ED84DD2; Sun, 29 Mar 2020 00:58:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5724784DCB for ; Sun, 29 Mar 2020 00:58:32 +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 GVwGaLZQtTUd for ; Sun, 29 Mar 2020 00:58:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9C1E984CE3 for ; Sun, 29 Mar 2020 00:58:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 93E53FB27; Sun, 29 Mar 2020 00:58:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158544351182380" MIME-Version: 1.0 Date: Sun, 29 Mar 2020 00:58:31 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/cross To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200329005831.93E53FB27@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. --_----------=_158544351182380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sun Mar 29 00:58:31 UTC 2020 Modified Files: pkgsrc/cross/bfd-crunchide/files: Makefile pkgsrc/cross/bfd-mdsetimage/files: Makefile Log Message: Don't build bfd-crunchide and bfd-mdsetimage as PIE, they link against a static library. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 pkgsrc/cross/bfd-crunchide/files/Makefile cvs rdiff -u -r1.1.1.1 -r1.2 pkgsrc/cross/bfd-mdsetimage/files/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158544351182380 Content-Disposition: inline Content-Length: 1131 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/bfd-crunchide/files/Makefile diff -u pkgsrc/cross/bfd-crunchide/files/Makefile:1.1.1.1 pkgsrc/cross/bfd-crunchide/files/Makefile:1.2 --- pkgsrc/cross/bfd-crunchide/files/Makefile:1.1.1.1 Mon Dec 20 05:57:40 1999 +++ pkgsrc/cross/bfd-crunchide/files/Makefile Sun Mar 29 00:58:31 2020 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/12/20 05:57:40 sakamoto Exp $ +# $NetBSD: Makefile,v 1.2 2020/03/29 00:58:31 joerg Exp $ PROG= crunchide SRCS= crunchide.c #MAN= crunchide.1 MKMAN= no +MKPIE= no BINDIR= ${PREFIX}/bin Index: pkgsrc/cross/bfd-mdsetimage/files/Makefile diff -u pkgsrc/cross/bfd-mdsetimage/files/Makefile:1.1.1.1 pkgsrc/cross/bfd-mdsetimage/files/Makefile:1.2 --- pkgsrc/cross/bfd-mdsetimage/files/Makefile:1.1.1.1 Mon Dec 20 05:58:34 1999 +++ pkgsrc/cross/bfd-mdsetimage/files/Makefile Sun Mar 29 00:58:31 2020 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/12/20 05:58:34 sakamoto Exp $ +# $NetBSD: Makefile,v 1.2 2020/03/29 00:58:31 joerg Exp $ PROG= mdsetimage SRCS= mdsetimage.c #MAN= mdsetimage.8 MKMAN= no +MKPIE= no BINDIR= ${PREFIX}/bin --_----------=_158544351182380--