From: Zac Medico Date: Mon, 23 Mar 2009 02:19:22 +0000 (-0000) Subject: Fix argument validation to allow file paths. Thanks to Arfrever for reporting. X-Git-Tag: v2.1.6.10~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f75b60995bf4da057708e3f79f6b097c16996366;p=portage.git Fix argument validation to allow file paths. Thanks to Arfrever for reporting. (trunk r13140) svn path=/main/branches/2.1.6/; revision=13157 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 6b26f594e..67ec6de0e 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -15178,6 +15178,13 @@ def emerge_main(): if x.startswith(SETPREFIX) or \ is_valid_package_atom(x): continue + if x[:1] == os.sep: + continue + try: + os.lstat(x) + continue + except OSError: + pass msg = [] msg.append("'%s' is not a valid package atom." % (x,)) msg.append("Please check ebuild(5) for full details.")