projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa07a9b
)
Fix a typo.
author
Zac Medico
<zmedico@gentoo.org>
Thu, 29 Nov 2007 00:18:31 +0000
(
00:18
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 29 Nov 2007 00:18:31 +0000
(
00:18
-0000)
svn path=/main/trunk/; revision=8736
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index cd3ebbe722827a39216af8b9b2ab332bbc0757c2..5370600be7380eaf74199a77a669a69933839daa 100644
(file)
--- 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",