Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 373341
Collapse All | Expand All

(-)a/man/env-update.1 (-2 / +1 lines)
Lines 17-24 first. Link Here
17
.SH OPTIONS 
17
.SH OPTIONS 
18
.TP
18
.TP
19
.B \-\-no\-ldconfig
19
.B \-\-no\-ldconfig
20
Do not run ldconfig (and thus skip rebuilding the ldso cache, updating the 
20
Do not run ldconfig (and thus skip rebuilding the ld.so cache, etc...).
21
links in library paths, etc...).
22
.SH "REPORTING BUGS"
21
.SH "REPORTING BUGS"
23
Please report bugs via http://bugs.gentoo.org/
22
Please report bugs via http://bugs.gentoo.org/
24
.SH AUTHORS
23
.SH AUTHORS
(-)a/pym/portage/util/env_update.py (-5 / +1 lines)
Lines 248-257 def env_update(makelinks=1, target_root=None, prev_mtimes=None, contents=None, Link Here
248
			# we can safely create links.
248
			# we can safely create links.
249
			writemsg_level(_(">>> Regenerating %setc/ld.so.cache...\n") % \
249
			writemsg_level(_(">>> Regenerating %setc/ld.so.cache...\n") % \
250
				(target_root,))
250
				(target_root,))
251
			if makelinks:
251
			os.system("cd / ; %s -X -r '%s'" % (ldconfig, target_root))
252
				os.system("cd / ; %s -r '%s'" % (ldconfig, target_root))
253
			else:
254
				os.system("cd / ; %s -X -r '%s'" % (ldconfig, target_root))
255
		elif ostype in ("FreeBSD","DragonFly"):
252
		elif ostype in ("FreeBSD","DragonFly"):
256
			writemsg_level(_(">>> Regenerating %svar/run/ld-elf.so.hints...\n") % \
253
			writemsg_level(_(">>> Regenerating %svar/run/ld-elf.so.hints...\n") % \
257
				target_root)
254
				target_root)
258
- 

Return to bug 373341