From: fuzzyray Date: Wed, 7 Dec 2005 18:38:51 +0000 (-0000) Subject: Clarify error msg for Bug #113423. Make partial name searches the default for Bug... X-Git-Tag: gentoolkit-0.2.4.3~249 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=217d00e13b8c04b182344995f22c5a89fe1d5b9c;p=gentoolkit.git Clarify error msg for Bug #113423. Make partial name searches the default for Bug #113134 svn path=/; revision=264 --- diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index 8807ee0..0945cf8 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -1160,7 +1160,6 @@ class CmdListPackages(Command): opts["includeMasked"] = 0 elif x in ["-f", "--full-regex"]: opts["regex"] = 1 - opts["exact"] = 1 elif x in ["-e", "--exact-name"]: opts["exact"] = 1 elif x in ["-d", "--duplicates"]: @@ -1648,6 +1647,9 @@ if __name__ == "__main__": print_error(" > >= = <= <") print_error("Example to only match gcc versions greater or equal 3.2:") print_error(" >=sys-devel/gcc-3.2") + print_error("") + print_error("Note: The symbols > and < are used for redirection in the shell") + print_error("and must be quoted if either one is used.") else: print_error("Internal portage error, terminating")