diff options
-rw-r--r-- | pym/portage/dbapi/_MergeProcess.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pym/portage/dbapi/_MergeProcess.py b/pym/portage/dbapi/_MergeProcess.py index 3cf50d22b..f717d12df 100644 --- a/pym/portage/dbapi/_MergeProcess.py +++ b/pym/portage/dbapi/_MergeProcess.py @@ -1,6 +1,7 @@ -# Copyright 2010 Gentoo Foundation +# Copyright 2010-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +import signal import traceback import portage @@ -29,6 +30,11 @@ class MergeProcess(SpawnProcess): portage.process._setup_pipes(fd_pipes) + # Use default signal handlers since the ones inherited + # from the parent process are irrelevant here. + signal.signal(signal.SIGINT, signal.SIG_DFL) + signal.signal(signal.SIGTERM, signal.SIG_DFL) + portage.output.havecolor = self.dblink.settings.get('NOCOLOR') \ not in ('yes', 'true') |