svn commit: r204034 - stable/8/usr.sbin/sysinstall

Bruce Cran brucec at FreeBSD.org
Thu Feb 18 10:48:37 UTC 2010


Author: brucec
Date: Thu Feb 18 10:48:37 2010
New Revision: 204034
URL: http://svn.freebsd.org/changeset/base/204034

Log:
  MFC r203690:
  
  Xorg isn't treated as a distribution, so /usr/X11R6/lib shouldn't be
  configured when running ldconfig.
  
  PR:	bin/138945
  Approved by:	rrs (mentor)

Modified:
  stable/8/usr.sbin/sysinstall/package.c
Directory Properties:
  stable/8/usr.sbin/sysinstall/   (props changed)

Modified: stable/8/usr.sbin/sysinstall/package.c
==============================================================================
--- stable/8/usr.sbin/sysinstall/package.c	Thu Feb 18 10:46:25 2010	(r204033)
+++ stable/8/usr.sbin/sysinstall/package.c	Thu Feb 18 10:48:37 2010	(r204034)
@@ -139,7 +139,7 @@ package_extract(Device *dev, char *name,
 
     /* If necessary, initialize the ldconfig hints */
     if (!file_readable("/var/run/ld-elf.so.hints"))
-	vsystem("ldconfig /usr/lib /usr/lib/compat /usr/local/lib /usr/X11R6/lib");
+	vsystem("ldconfig /usr/lib /usr/lib/compat /usr/local/lib");
 
     /* Be initially optimistic */
     ret = DITEM_SUCCESS;


More information about the svn-src-stable-8 mailing list