Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 489016 | Differences between
and this patch

Collapse All | Expand All

(-)a/pym/_emerge/MiscFunctionsProcess.py (-1 / +6 lines)
Lines 21-26 class MiscFunctionsProcess(AbstractEbuildProcess): Link Here
21
		misc_sh_binary = os.path.join(portage_bin_path,
21
		misc_sh_binary = os.path.join(portage_bin_path,
22
			os.path.basename(portage.const.MISC_SH_BINARY))
22
			os.path.basename(portage.const.MISC_SH_BINARY))
23
23
24
		if "fakeroot" in settings.features:
25
                        fr_file = os.path.join(settings["T"], "fakeroot.state")
26
                        self.commands = ["-i " + fr_file + " -s " + fr_file + " -- " \
27
                                         + misc_sh_binary] + self.commands
28
			misc_sh_binary = portage.const.FAKEROOT_BINARY
29
24
		self.args = [portage._shell_quote(misc_sh_binary)] + self.commands
30
		self.args = [portage._shell_quote(misc_sh_binary)] + self.commands
25
		if self.logfile is None and \
31
		if self.logfile is None and \
26
			self.settings.get("PORTAGE_BACKGROUND") != "subprocess":
32
			self.settings.get("PORTAGE_BACKGROUND") != "subprocess":
27
- 

Return to bug 489016