Index: shell/subcmds/portage_cmds.py |
diff --git a/shell/subcmds/portage_cmds.py b/shell/subcmds/portage_cmds.py |
index cd137323d627a766b2f90bedda32339bd8c4b48c..67b3e389bd924767f182fc31bbb7f2c3969a0863 100644 |
--- a/shell/subcmds/portage_cmds.py |
+++ b/shell/subcmds/portage_cmds.py |
@@ -15,7 +15,6 @@ class EbuildCmd(subcmd.WrappedChrootCmd): |
"""EbuildCmd constructor.""" |
# Just call the WrappedChrootCmd superclass, which does most of the work. |
super(EbuildCmd, self).__init__( |
- 'EBUILD', |
['ebuild-%s'], ['ebuild'], |
need_args=True, |
env_whitelist=['CHROME_ORIGIN', 'FEATURES', 'USE'] |
@@ -29,7 +28,6 @@ class EmergeCmd(subcmd.WrappedChrootCmd): |
"""EmergeCmd constructor.""" |
# Just call the WrappedChrootCmd superclass, which does most of the work. |
super(EmergeCmd, self).__init__( |
- 'EMERGE', |
['emerge-%s'], ['sudo', 'emerge'], |
need_args=True, |
env_whitelist=['CHROME_ORIGIN', 'FEATURES', 'USE'] |
@@ -43,7 +41,6 @@ class EqueryCmd(subcmd.WrappedChrootCmd): |
"""EqueryCmd constructor.""" |
# Just call the WrappedChrootCmd superclass, which does most of the work. |
super(EqueryCmd, self).__init__( |
- 'EQUERY', |
['equery-%s'], ['equery'], |
need_args=True |
) |
@@ -56,7 +53,6 @@ class PortageqCmd(subcmd.WrappedChrootCmd): |
"""PortageqCmd constructor.""" |
# Just call the WrappedChrootCmd superclass, which does most of the work. |
super(PortageqCmd, self).__init__( |
- 'PORTAGEEQ', |
['portageq-%s'], ['portageq'], |
need_args=True |
) |