projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81f22e9
)
Add references to bug #309001 in comments about SIGPIPE handling.
author
Zac Medico
<zmedico@gentoo.org>
Sat, 13 Mar 2010 02:22:20 +0000
(
02:22
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Sat, 13 Mar 2010 02:22:20 +0000
(
02:22
-0000)
svn path=/main/trunk/; revision=15824
bin/ebuild
patch
|
blob
|
history
bin/emerge
patch
|
blob
|
history
diff --git
a/bin/ebuild
b/bin/ebuild
index f2625cc93acf63254428efc56736c50e8024ac73..01b77b6e89fc5d34adfbe8b1be8f630788a4f0d9 100755
(executable)
--- a/
bin/ebuild
+++ b/
bin/ebuild
@@
-17,6
+17,7
@@
try:
signal.signal(signal.SIGINT, exithandler)
signal.signal(signal.SIGTERM, exithandler)
+ # Quiet killing of subprocesses by SIGPIPE (see bug #309001).
signal.signal(signal.SIGPIPE, signal.SIG_DFL)
except KeyboardInterrupt:
diff --git
a/bin/emerge
b/bin/emerge
index 522135fcd8f9a7d79eb21c8ddc4efa39ffa997ee..8f5d98f7e3b6aee83978e8d18738cf299cc66a74 100755
(executable)
--- a/
bin/emerge
+++ b/
bin/emerge
@@
-17,6
+17,7
@@
try:
signal.signal(signal.SIGINT, exithandler)
signal.signal(signal.SIGTERM, exithandler)
+ # Quiet killing of subprocesses by SIGPIPE (see bug #309001).
signal.signal(signal.SIGPIPE, signal.SIG_DFL)
except KeyboardInterrupt: