svn commit: r469624 - head/sysutils/e2fsprogs

Dag-Erling Smørgrav des at FreeBSD.org
Fri May 11 10:51:37 UTC 2018


Author: des
Date: Fri May 11 10:51:36 2018
New Revision: 469624
URL: https://svnweb.freebsd.org/changeset/ports/469624

Log:
  Don't set USE_LDCONFIG for child ports.  They will do so themselves if
  they need it.  Also, use PREFIX instead of LOCALBASE.
  
  Not bumping PORTREVISION as the only observable effect is the absence of
  a warning message caused by running ldconfig on a non-existent directory.
  
  Approved by:	maintainer (mandree@)

Modified:
  head/sysutils/e2fsprogs/Makefile

Modified: head/sysutils/e2fsprogs/Makefile
==============================================================================
--- head/sysutils/e2fsprogs/Makefile	Fri May 11 10:40:41 2018	(r469623)
+++ head/sysutils/e2fsprogs/Makefile	Fri May 11 10:51:36 2018	(r469624)
@@ -30,7 +30,9 @@ USE_CSTD=	gnu99
 # this seems a bit redundant to the --rpath below, but
 # the latter should be more robust in case someone needs
 # to deal with the file systems from a system not yet fully booted.
-USE_LDCONFIG=	${LOCALBASE}/lib/e2fsprogs
+.if !defined(PKGNAMESUFFIX)
+USE_LDCONFIG=	${PREFIX}/lib/e2fsprogs
+.endif
 GNU_CONFIGURE=	yes
 LLD_UNSAFE=	yes
 CONFIGURE_ARGS?=--disable-fsck \


More information about the svn-ports-all mailing list