Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Dec 2015 16:08:38 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291593 - head/lib/libelf
Message-ID:  <201512011608.tB1G8cWQ002719@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.own.mk>
 
 TOP=	${.CURDIR}/../../contrib/elftoolchain
@@ -7,7 +10,6 @@ SRCDIR=	${TOP}/libelf
 .PATH:	${SRCDIR}
 
 LIB=	elf
-SHLIBDIR?= /lib
 
 SRCS=	elf.c							\
 	elf_begin.c						\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512011608.tB1G8cWQ002719>