projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd85148
)
config: constructor default portage.const.EPREFIX
author
Zac Medico
<zmedico@gentoo.org>
Sat, 10 Dec 2011 06:07:07 +0000
(22:07 -0800)
committer
Zac Medico
<zmedico@gentoo.org>
Sat, 10 Dec 2011 06:07:07 +0000
(22:07 -0800)
pym/portage/package/ebuild/config.py
patch
|
blob
|
history
diff --git
a/pym/portage/package/ebuild/config.py
b/pym/portage/package/ebuild/config.py
index 128888137e356a921a4eebf9c4df42c0c9ffff88..40a61a43a0fd57a8c14eafa5dbed4340b403e56f 100644
(file)
--- a/
pym/portage/package/ebuild/config.py
+++ b/
pym/portage/package/ebuild/config.py
@@
-143,7
+143,8
@@
class config(object):
def __init__(self, clone=None, mycpv=None, config_profile_path=None,
config_incrementals=None, config_root=None, target_root=None,
- _eprefix=None, local_config=True, env=None, _unmatched_removal=False):
+ _eprefix=portage.const.EPREFIX, local_config=True, env=None,
+ _unmatched_removal=False):
"""
@param clone: If provided, init will use deepcopy to copy by value the instance.
@type clone: Instance of config class.