Bug #201082 - Don't call config.load_infodir() prior to pkg_postinst()
authorZac Medico <zmedico@gentoo.org>
Mon, 3 Dec 2007 19:12:37 +0000 (19:12 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 3 Dec 2007 19:12:37 +0000 (19:12 -0000)
because it's not needed and the ebuild path that's passed in for
postinst is may be from the portage tree, which causes load_infodir()
to discard critical metadata such as CATEGORY without realoading
it.

svn path=/main/trunk/; revision=8822

pym/portage/__init__.py

index c8634dd392c30506604822cd4f0b02338c240934..0fdc5a8fba6b4391b63c79f330bba8b37900cf82 100644 (file)
@@ -4482,7 +4482,6 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
                                                noiselevel=-1)
                        return phase_retval
                elif mydo == "postinst":
-                       mysettings.load_infodir(mysettings["O"])
                        phase_retval = spawn(
                                _shell_quote(ebuild_sh_binary) + " " + mydo,
                                mysettings, debug=debug, free=1, logfile=logfile)