diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-11-29 00:18:31 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-11-29 00:18:31 +0000 |
commit | fd436e1733d5981f47ee388f0a76ddeb342c8fc8 (patch) | |
tree | 52088868779392dd1f9f63bc5a55df500a2d36e1 | |
parent | fa07a9b25eb9c8935d59a29a5032a4c22b18d5f5 (diff) | |
download | portage-fd436e1733d5981f47ee388f0a76ddeb342c8fc8.tar.gz portage-fd436e1733d5981f47ee388f0a76ddeb342c8fc8.tar.bz2 portage-fd436e1733d5981f47ee388f0a76ddeb342c8fc8.zip |
Fix a typo.
svn path=/main/trunk/; revision=8736
-rw-r--r-- | pym/portage/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index cd3ebbe72..5370600be 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3624,8 +3624,9 @@ def spawnebuild(mydo,actionmap,mysettings,debug,alwaysdep=0,logfile=None): portage_bin_path = mysettings["PORTAGE_BIN_PATH"] misc_sh_binary = os.path.join(portage_bin_path, os.path.basename(MISC_SH_BINARY)) - mycommand = " ".join([portage_bin_path, + mycommand = " ".join([misc_sh_binary, "install_qa_check", "install_symlink_html_docs"]) + print mycommand qa_retval = spawn(mycommand, mysettings, debug=debug, logfile=logfile, **kwargs) if qa_retval: writemsg("!!! install_qa_check failed; exiting.\n", |