summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2005-10-03 13:28:14 +0000
committerBrian Harring <ferringb@gentoo.org>2005-10-03 13:28:14 +0000
commit6ae828fbda08e9b185774f029be992ebea65c8f6 (patch)
tree5b153f42352306e2bcb8d38e6019f7e5a2f8e964
parentfixing horkage when noauto is in use (nameerrors) (diff)
downloadportage-multirepo-6ae828fbda08e9b185774f029be992ebea65c8f6.tar.gz
portage-multirepo-6ae828fbda08e9b185774f029be992ebea65c8f6.tar.bz2
portage-multirepo-6ae828fbda08e9b185774f029be992ebea65c8f6.zip
final fixup (ebuild nameerror)
svn path=/main/branches/2.0/; revision=2080
-rwxr-xr-xbin/ebuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ebuild b/bin/ebuild
index 133c0426..619e6ec5 100755
--- a/bin/ebuild
+++ b/bin/ebuild
@@ -67,7 +67,8 @@ if len(pargs) > 1 and "noauto" not in portage.features:
if len(pargs) != 2:
print "config must be called on it's own, not combined with any other phase"
sys.exit(1)
- pargs = [pargs[0]] + actionmap_targets + others
+ ebuild = pargs[0]
+ pargs = actionmap_targets + others
else:
ebuild = pargs.pop(0)
try: pargs.remove("clean")