Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 May 2018 10:51:36 +0000 (UTC)
From:      =?UTF-8?Q?Dag-Erling_Sm=c3=b8rgrav?= <des@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r469624 - head/sysutils/e2fsprogs
Message-ID:  <201805111051.w4BApakm049346@repo.freebsd.org>

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



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