diff options
author | Brian Harring <ferringb@gentoo.org> | 2005-10-03 13:28:14 +0000 |
---|---|---|
committer | Brian Harring <ferringb@gentoo.org> | 2005-10-03 13:28:14 +0000 |
commit | 6ae828fbda08e9b185774f029be992ebea65c8f6 (patch) | |
tree | 5b153f42352306e2bcb8d38e6019f7e5a2f8e964 | |
parent | f792724229b4f7bfe21d715ab1c4e2156d6b8824 (diff) | |
download | portage-6ae828fbda08e9b185774f029be992ebea65c8f6.tar.gz portage-6ae828fbda08e9b185774f029be992ebea65c8f6.tar.bz2 portage-6ae828fbda08e9b185774f029be992ebea65c8f6.zip |
final fixup (ebuild nameerror)
svn path=/main/branches/2.0/; revision=2080
-rwxr-xr-x | bin/ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ebuild b/bin/ebuild index 133c04262..619e6ec5b 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") |