Received: by mail.netbsd.org (Postfix, from userid 605) id E6DA484D5D; Wed, 30 Aug 2017 19:50:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 79D3284D2D for ; Wed, 30 Aug 2017 19:50:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id oOIkgI4w_CRr for ; Wed, 30 Aug 2017 19:50:00 +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 19C3B84CF0 for ; Wed, 30 Aug 2017 19:50:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 103FCFA97; Wed, 30 Aug 2017 19:50:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1504122600268140" MIME-Version: 1.0 Date: Wed, 30 Aug 2017 19:50:00 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/multimedia/libvpx/files To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170830195000.103FCFA97@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. --_----------=_1504122600268140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Aug 30 19:50:00 UTC 2017 Modified Files: pkgsrc/multimedia/libvpx/files: strip_fPIC.sh Log Message: Remove -pie from nasm/yasm command line. Fixes PIE build. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/multimedia/libvpx/files/strip_fPIC.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1504122600268140 Content-Disposition: inline Content-Length: 525 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/libvpx/files/strip_fPIC.sh diff -u pkgsrc/multimedia/libvpx/files/strip_fPIC.sh:1.2 pkgsrc/multimedia/libvpx/files/strip_fPIC.sh:1.3 --- pkgsrc/multimedia/libvpx/files/strip_fPIC.sh:1.2 Sat Mar 12 11:00:01 2011 +++ pkgsrc/multimedia/libvpx/files/strip_fPIC.sh Wed Aug 30 19:49:59 2017 @@ -5,7 +5,7 @@ command="" while [ $# -gt 0 ]; do case "$1" in - -fno-common) + -fno-common|-pie) ;; -?PIC) # Ignore -fPIC and -DPIC options --_----------=_1504122600268140--