From fd436e1733d5981f47ee388f0a76ddeb342c8fc8 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 29 Nov 2007 00:18:31 +0000 Subject: [PATCH] Fix a typo. svn path=/main/trunk/; revision=8736 --- pym/portage/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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", -- 2.26.2