projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d80cc16
)
Disable "Installing" status messages when in --pretend or --buildpkgonly
author
Zac Medico
<zmedico@gentoo.org>
Tue, 22 Jul 2008 03:42:34 +0000
(
03:42
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Tue, 22 Jul 2008 03:42:34 +0000
(
03:42
-0000)
mode.
svn path=/main/trunk/; revision=11163
pym/_emerge/__init__.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/__init__.py
b/pym/_emerge/__init__.py
index cc2c20a828a81dead0871b7b9f80b7ee3a77796d..9bbd89dd2b8ad5d3e826de5d574f8e9879020753 100644
(file)
--- a/
pym/_emerge/__init__.py
+++ b/
pym/_emerge/__init__.py
@@
-3477,7
+3477,9
@@
class PackageMerge(AsynchronousTask):
action_desc = "Installing"
preposition = "to"
- if not self.merge.build_opts.fetchonly:
+ if not self.merge.build_opts.fetchonly and \
+ not self.merge.build_opts.pretend and \
+ not self.merge.build_opts.buildpkgonly:
self.merge.statusMessage("%s %s %s %s" % \
(action_desc, colorize("GOOD", pkg.cpv),
preposition, pkg.root))