svn commit: r203690 - head/usr.sbin/sysinstall

Bruce Cran brucec at FreeBSD.org
Mon Feb 8 21:29:34 UTC 2010


Author: brucec
Date: Mon Feb  8 21:29:34 2010
New Revision: 203690
URL: http://svn.freebsd.org/changeset/base/203690

Log:
  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)
  MFC after:	3 days

Modified:
  head/usr.sbin/sysinstall/package.c

Modified: head/usr.sbin/sysinstall/package.c
==============================================================================
--- head/usr.sbin/sysinstall/package.c	Mon Feb  8 21:24:12 2010	(r203689)
+++ head/usr.sbin/sysinstall/package.c	Mon Feb  8 21:29:34 2010	(r203690)
@@ -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-head mailing list