projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0f0f25
)
phase-helpers.sh: set -x when emulating yes
author
Zac Medico
<zmedico@gentoo.org>
Wed, 25 Jan 2012 05:34:27 +0000
(21:34 -0800)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 25 Jan 2012 05:34:27 +0000
(21:34 -0800)
This avoids displaying a bunch of garbage in debug mode.
bin/phase-helpers.sh
patch
|
blob
|
history
diff --git
a/bin/phase-helpers.sh
b/bin/phase-helpers.sh
index 517a91000506eaea028f508afe5d3c114b494a40..946520b20f5543ed4572c42581522854e5d610f6 100644
(file)
--- a/
bin/phase-helpers.sh
+++ b/
bin/phase-helpers.sh
@@
-302,7
+302,7
@@
unpack() {
ZIP|zip|jar)
# unzip will interactively prompt under some error conditions,
# as reported in bug #336285
- ( while true ; do echo n || break ; done ) | \
+ (
set +x ;
while true ; do echo n || break ; done ) | \
unzip -qo "${srcdir}${x}" || die "$myfail"
;;
gz|Z|z)