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

(-)a/pym/portage/process.py (-1 / +4 lines)
Lines 352-357 def _exec(binary, mycommand, opt_name, fd_pipes, env, gid, groups, uid, umask, Link Here
352
	# Quiet killing of subprocesses by SIGPIPE (see bug #309001).
352
	# Quiet killing of subprocesses by SIGPIPE (see bug #309001).
353
	signal.signal(signal.SIGPIPE, signal.SIG_DFL)
353
	signal.signal(signal.SIGPIPE, signal.SIG_DFL)
354
354
355
	# Avoid issues triggered by inheritance of SIGQUIT handler from
356
	# the parent process (see bug #289486).
357
	signal.signal(signal.SIGQUIT, signal.SIG_DFL)
358
355
	_setup_pipes(fd_pipes)
359
	_setup_pipes(fd_pipes)
356
360
357
	# Set requested process permissions.
361
	# Set requested process permissions.
358
- 

Return to bug 289486