diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2006-02-04 03:06:11 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2006-02-04 03:06:11 +0000 |
commit | bb1dcde7744baf67932c9c945cdbbef9289a4417 (patch) | |
tree | 1dcd7a7003e67adab908f09d13d605b252fa95b6 | |
parent | fb26c15fadc2e960ddeec3b3b9b4da1e7ce17af6 (diff) | |
download | portage-bb1dcde7744baf67932c9c945cdbbef9289a4417.tar.gz portage-bb1dcde7744baf67932c9c945cdbbef9289a4417.tar.bz2 portage-bb1dcde7744baf67932c9c945cdbbef9289a4417.zip |
Add back emerge list header hiding when --quiet is used.
svn path=/main/trunk/; revision=2648
-rwxr-xr-x | bin/emerge | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/emerge b/bin/emerge index 563c659b1..3336ba189 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3218,7 +3218,7 @@ elif "depclean"==myaction: else: favorites=[] syslist=getlist("system") - if "--ask" in myopts or "--pretend" in myopts: + if ("--ask" in myopts or "--pretend" in myopts) and not "--quiet" in myopts: action = "" if "--fetchonly" in myopts or "--fetch-all-uri" in myopts: action = "fetched" |