Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Apr 2019 20:02:11 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r346700 - head/lib/libbe
Message-ID:  <201904252002.x3PK2BXV039031@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



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