From: Zac Medico Date: Wed, 20 Jun 2007 23:44:11 +0000 (-0000) Subject: Use the the optparse options for --ignore-default-opts since that allows option abrev... X-Git-Tag: v2.1.3~202 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c480635dc843170ce13b25ad0863264c281f1ea0;p=portage.git Use the the optparse options for --ignore-default-opts since that allows option abreviation to work. (trunk r6890) svn path=/main/branches/2.1.2/; revision=6891 --- diff --git a/bin/emerge b/bin/emerge index f02b77c60..7ee4c3f0a 100755 --- a/bin/emerge +++ b/bin/emerge @@ -5304,7 +5304,7 @@ def emerge_main(): xterm_titles = "notitles" not in settings.features tmpcmdline = [] - if "--ignore-default-opts" not in sys.argv: + if "--ignore-default-opts" not in myopts: tmpcmdline.extend(settings["EMERGE_DEFAULT_OPTS"].split()) tmpcmdline.extend(sys.argv[1:]) myaction, myopts, myfiles = parse_opts(tmpcmdline)