diff options
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pym/portage.py b/pym/portage.py index 737a8e3c5..53f194507 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -3067,6 +3067,8 @@ def isvalidatom(atom): mycpv_cps = catpkgsplit(dep_getcpv(atom)) operator = get_operator(atom) if operator: + if operator[0] in "<>" and atom[-1] == "*": + return 0 if mycpv_cps and mycpv_cps[0] != "null": # >=cat/pkg-1.0 return 1 |