Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Apr 2019 20:48:25 +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: r346705 - head/lib/libbe
Message-ID:  <201904252048.x3PKmPsH060816@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Thu Apr 25 20:48:25 2019
New Revision: 346705
URL: https://svnweb.freebsd.org/changeset/base/346705

Log:
  libbe(3): Fix libcompat build
  
  SHLIBDIR should still be optionally set, just before src.opts.mk is included
  so that libcompat can properly override it. This fixes lib32 failures
  reported by both Jenkins and Michael Butler.
  
  Reported by:	Michael Butler <imb@protected-networks.net>
  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 20:23:13 2019	(r346704)
+++ head/lib/libbe/Makefile	Thu Apr 25 20:48:25 2019	(r346705)
@@ -1,10 +1,11 @@
 # $FreeBSD$
 
+SHLIBDIR?=	/lib
+
 .include <src.opts.mk>
 
 PACKAGE=	lib${LIB}
 LIB=		be
-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?201904252048.x3PKmPsH060816>