projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ab8936
)
Fix a typo from the last revision.
author
Zac Medico
<zmedico@gentoo.org>
Sat, 18 Mar 2006 07:13:08 +0000
(07:13 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Sat, 18 Mar 2006 07:13:08 +0000
(07:13 -0000)
svn path=/main/trunk/; revision=2935
pym/portage.py
patch
|
blob
|
history
diff --git
a/pym/portage.py
b/pym/portage.py
index 944222bc5573d0cf26bbbfd074bd0fce587b4be6..a32ddc9017d5abe5c51878cec0477c05302adefc 100644
(file)
--- a/
pym/portage.py
+++ b/
pym/portage.py
@@
-2506,7
+2506,7
@@
def prepare_build_dirs(myroot, mysettings, cleanup):
def makedirs(dir_path):
try:
- os.makedirs(
mysettings[dir_key]
)
+ os.makedirs(
dir_path
)
except OSError, oe:
if errno.EEXIST == oe.errno:
pass