From owner-svn-src-head@freebsd.org Wed Sep 5 21:39:26 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD448FFDF35; Wed, 5 Sep 2018 21:39:26 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from mail.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C08174BAC; Wed, 5 Sep 2018 21:39:26 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from John-Baldwins-MacBook-Pro-2.local (ralph.baldwin.cx [66.234.199.215]) by mail.baldwin.cx (Postfix) with ESMTPSA id 54DF510AFD2; Wed, 5 Sep 2018 17:39:25 -0400 (EDT) Subject: Re: svn commit: r338478 - in head: contrib/elftoolchain/elfcopy contrib/elftoolchain/libelf sys/sys From: John Baldwin To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201809052051.w85KpsCl064064@repo.freebsd.org> Message-ID: <147ea5a2-9652-b08e-5744-df748e3fea8d@FreeBSD.org> Date: Wed, 5 Sep 2018 14:39:24 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <201809052051.w85KpsCl064064@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mail.baldwin.cx); Wed, 05 Sep 2018 17:39:25 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.99.2 at mail.baldwin.cx X-Virus-Status: Clean X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Sep 2018 21:39:26 -0000 On 9/5/18 1:51 PM, John Baldwin wrote: > Author: jhb > Date: Wed Sep 5 20:51:53 2018 > New Revision: 338478 > URL: https://svnweb.freebsd.org/changeset/base/338478 > > Log: > Fix objcopy for little-endian MIPS64 objects. Bah, I forgot to include the hunk to add the new file to libelf's Makefile in the diff I sent to re@ and the diff I committed. I have the fix waiting for re@ approval, but in the meantime: Index: lib/libelf/Makefile =================================================================== --- lib/libelf/Makefile (revision 338478) +++ lib/libelf/Makefile (working copy) @@ -43,6 +43,7 @@ gelf_ehdr.c \ gelf_getclass.c \ gelf_fsize.c \ + gelf_mips64el.c \ gelf_move.c \ gelf_phdr.c \ gelf_rel.c \ -- John Baldwin