Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Nov 2012 14:54:47 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306970 - head/x11-fonts/fontconfig
Message-ID:  <201211041454.qA4EslWP012655@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Sun Nov  4 14:54:47 2012
New Revision: 306970
URL: http://svn.freebsd.org/changeset/ports/306970

Log:
  Fix installing this port as a user (e.g., INSTALL_AS_USER=1) by
  ignoring the error code after a call to ${LDCONFIG}.
  
  Approved by:	maintainer timeout (3 months)
  Feature safe:	yes

Modified:
  head/x11-fonts/fontconfig/Makefile

Modified: head/x11-fonts/fontconfig/Makefile
==============================================================================
--- head/x11-fonts/fontconfig/Makefile	Sun Nov  4 14:16:27 2012	(r306969)
+++ head/x11-fonts/fontconfig/Makefile	Sun Nov  4 14:54:47 2012	(r306970)
@@ -61,9 +61,8 @@ post-install:
 		s|%%LOCALBASE%%|${LOCALBASE}|' < ${FILESDIR}/pkg-install.in \
 		> ${PKGINSTALL}
 .if !defined(PACKAGE_BUILDING)
-	@${LDCONFIG} -m ${PREFIX}/lib
+	-@${LDCONFIG} -m ${PREFIX}/lib
 	@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
-
 .endif
 
 .include <bsd.port.post.mk>



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