From owner-svn-src-head@freebsd.org Tue Dec 1 16:08:39 2015 Return-Path: Delivered-To: svn-src-head@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 ED339A3DCC7; Tue, 1 Dec 2015 16:08:39 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (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 B68DE100A; Tue, 1 Dec 2015 16:08:39 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1G8ctA002720; Tue, 1 Dec 2015 16:08:38 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB1G8cWQ002719; Tue, 1 Dec 2015 16:08:38 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201512011608.tB1G8cWQ002719@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 1 Dec 2015 16:08:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291593 - head/lib/libelf X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 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: Tue, 01 Dec 2015 16:08:40 -0000 Author: bdrewery Date: Tue Dec 1 16:08:38 2015 New Revision: 291593 URL: https://svnweb.freebsd.org/changeset/base/291593 Log: Correct r291566 for defining SHLIBDIR. This must happen before including bsd.own.mk which sets the default to /usr/lib. X-MFC-With: r291566 Reported by: Max N. Boyarov Modified: head/lib/libelf/Makefile Modified: head/lib/libelf/Makefile ============================================================================== --- head/lib/libelf/Makefile Tue Dec 1 16:04:50 2015 (r291592) +++ head/lib/libelf/Makefile Tue Dec 1 16:08:38 2015 (r291593) @@ -1,4 +1,7 @@ # $FreeBSD$ + +SHLIBDIR?= /lib + .include TOP= ${.CURDIR}/../../contrib/elftoolchain @@ -7,7 +10,6 @@ SRCDIR= ${TOP}/libelf .PATH: ${SRCDIR} LIB= elf -SHLIBDIR?= /lib SRCS= elf.c \ elf_begin.c \