svn commit: r346700 - head/lib/libbe
Kyle Evans
kevans at FreeBSD.org
Thu Apr 25 20:02:12 UTC 2019
Author: kevans
Date: Thu Apr 25 20:02:11 2019
New Revision: 346700
URL: https://svnweb.freebsd.org/changeset/base/346700
Log:
libbe(3): Fix mis-application of patch (SHLIBDIR)
Rob's patch in D18564 cemented the SHLIBDIR because bsd.own.mk (included by
src.opts.mk) sets it to /usr/lib. r346546 did somehow not apply this part of
the patch, leaving it to get installed to the wrong place and subsequently
removed via ObsoleteFiles.
Reported by: jkim
MFC after: 3 days
X-MFC-With: r346546
Modified:
head/lib/libbe/Makefile
Modified: head/lib/libbe/Makefile
==============================================================================
--- head/lib/libbe/Makefile Thu Apr 25 18:49:29 2019 (r346699)
+++ head/lib/libbe/Makefile Thu Apr 25 20:02:11 2019 (r346700)
@@ -4,7 +4,7 @@
PACKAGE= lib${LIB}
LIB= be
-SHLIBDIR?= /lib
+SHLIBDIR= /lib
SHLIB_MAJOR= 1
SHLIB_MINOR= 0
More information about the svn-src-all
mailing list