svn commit: r291593 - head/lib/libelf

Bryan Drewery bdrewery at FreeBSD.org
Tue Dec 1 16:08:40 UTC 2015


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						\


More information about the svn-src-all mailing list