From: Zac Medico Date: Mon, 30 Jul 2007 04:33:54 +0000 (-0000) Subject: Use the the optparse options for --ignore-default-opts since that allows option abrev... X-Git-Tag: v2.1.2.11~46 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e60fcf885f7fe0191a460d6e499d6b255ce3b0ad;p=portage.git Use the the optparse options for --ignore-default-opts since that allows option abreviation to work. (branches/2.1.2 r6891) svn path=/main/branches/2.1.2.9/; revision=7471 --- diff --git a/bin/emerge b/bin/emerge index 80b72e142..8ca27d489 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)