From owner-svn-src-all@freebsd.org Tue Dec 1 10:13:06 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F26CA3CE05; Tue, 1 Dec 2015 10:13:06 +0000 (UTC) (envelope-from fidaj@ukr.net) Received: from frv157.fwdcdn.com (frv157.fwdcdn.com [212.42.77.157]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 104F319B1; Tue, 1 Dec 2015 10:13:05 +0000 (UTC) (envelope-from fidaj@ukr.net) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ukr.net; s=fsm; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=WdKFDcBFR4A4g+tGBqC0JijoCZIjRow0nlbGTHWl/wM=; b=BwAE6GqVUK3YUpyE7zehkXHE+pg7Of+L7KaHO4BjSidfhrjS+q6pSGSk2roMqpR1V/rsGUieoBCCmhCyXW/eQsbX4WPhJS8RsLfdgo7KIrnZMWNgi3Gcd0t2mt0b1vNLS4ydG2uftiCK2NNNha6uPWsB8aNyplCH7/b1dzHRfKE=; Received: from [178.137.139.136] (helo=nonamehost.local) by frv157.fwdcdn.com with esmtpsa ID 1a3hvc-000JfR-OL ; Tue, 01 Dec 2015 12:12:56 +0200 Date: Tue, 1 Dec 2015 12:12:56 +0200 From: Ivan Klymenko To: Garrett Cooper Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r291566 - in head: . lib/libelf Message-ID: <20151201121256.0b5aa89b@nonamehost.local> In-Reply-To: <201512010609.tB169MJH023576@repo.freebsd.org> References: <201512010609.tB169MJH023576@repo.freebsd.org> X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Authentication-Result: IP=178.137.139.136; mail.from=fidaj@ukr.net; dkim=pass; header.d=ukr.net X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 10:13:06 -0000 On Tue, 1 Dec 2015 06:09:22 +0000 (UTC) Garrett Cooper wrote: > Author: ngie > Date: Tue Dec 1 06:09:22 2015 > New Revision: 291566 > URL: https://svnweb.freebsd.org/changeset/base/291566 > > Log: > Move libelf.so.2 from /usr/lib to /lib to unbreak libkvm use after > r291406 > Tested with the following commands as root: > - yes | make delete-old > - service ldconfig restart > - netstat -nr > > X-MFC with: r291406 > Reviewed by: jhb, kib > Sponsored by: EMC / Isilon Storage Division > > Modified: > head/ObsoleteFiles.inc > head/lib/libelf/Makefile > > Modified: head/ObsoleteFiles.inc > ============================================================================== > --- head/ObsoleteFiles.inc Tue Dec 1 05:59:53 2015 > (r291565) +++ head/ObsoleteFiles.inc Tue Dec 1 06:09:22 > 2015 (r291566) @@ -38,6 +38,8 @@ > # xargs -n1 | sort | uniq -d; > # done > > +# 20151130: libelf moved from /usr/lib to /lib (libkvm dependency in > r291406) +OLD_FILES+=usr/lib/libelf.so.2 > # 20151115: Fox bad upgrade scheme > OLD_FILES+=usr/share/locale/zh_CN.GB18030/zh_Hans_CN.GB18030 > OLD_FILES+=usr/share/locale/zh_CN.GB2312/zh_Hans_CN.GB2312 > > Modified: head/lib/libelf/Makefile > ============================================================================== > --- head/lib/libelf/Makefile Tue Dec 1 05:59:53 2015 > (r291565) +++ head/lib/libelf/Makefile Tue Dec 1 06:09:22 > 2015 (r291566) @@ -7,6 +7,7 @@ SRCDIR= ${TOP}/libelf > .PATH: ${SRCDIR} > > LIB= elf > +SHLIBDIR?= /lib Hello. Maybe SHLIBDIR= /lib ? Thanks. > > SRCS= > elf.c \ > elf_begin.c \