diff options
author | ru <ru@FreeBSD.org> | 2007-03-04 13:30:02 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2007-03-04 13:30:02 +0000 |
commit | e896f83bb5d9b6db1f15d287241f5a6a955d029c (patch) | |
tree | 58e5f112c5a0e30883d81e4d352da63ab69c7860 /usr.sbin | |
parent | d68ab910b0056a2517f1b8e5b14ba1ba031a8f7b (diff) | |
download | FreeBSD-src-e896f83bb5d9b6db1f15d287241f5a6a955d029c.zip FreeBSD-src-e896f83bb5d9b6db1f15d287241f5a6a955d029c.tar.gz |
The use of predefined strings such as \*[Ge] can be harmful here,
as some fonts (e.g., KOI8-R) have special symbols for displaying
them, and we want symbols ">=" literally here.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_install/info/pkg_info.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_install/info/pkg_info.1 b/usr.sbin/pkg_install/info/pkg_info.1 index 79922dc..17c0bba 100644 --- a/usr.sbin/pkg_install/info/pkg_info.1 +++ b/usr.sbin/pkg_install/info/pkg_info.1 @@ -56,13 +56,13 @@ A package name may either be the name of an installed package, the pathname to a package distribution file or a URL to an FTP available package. Package version numbers can also be matched in a relational manner using the -.Pa \*[Ge] , \*[Le] , \*[Gt] +.Pa >= , <= , > and -.Pa \*[Lt] +.Pa < operators. For example, .Pp -.Dl "pkg_info 'portupgrade\*[Ge]20030723'" +.Dl "pkg_info 'portupgrade>=20030723'" .Pp will match versions 20030723 and later of the .Pa portupgrade |