diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-08-06 16:45:52 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-08-06 16:45:52 +0000 |
commit | 77a9f7d6be843590c1ab60e70ed6078a992b37f3 (patch) | |
tree | 5e7e1b55b3312d33a4c880fad7d6993be1cfb32a | |
parent | c9174f9fb69768d39cce30371a6faf5281aa9f3d (diff) |
Use .Dl instead of a literal block when we only have a single line. Has
the side effect of fixing some ugly indentation (or the lack thereof).
-rw-r--r-- | usr.sbin/pkg_add/pkg_create.1 | 10 | ||||
-rw-r--r-- | usr.sbin/pkg_add/pkg_delete.1 | 6 |
2 files changed, 5 insertions, 11 deletions
diff --git a/usr.sbin/pkg_add/pkg_create.1 b/usr.sbin/pkg_add/pkg_create.1 index 1770a1e3357..fd616644e08 100644 --- a/usr.sbin/pkg_add/pkg_create.1 +++ b/usr.sbin/pkg_add/pkg_create.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pkg_create.1,v 1.9 2004/08/06 16:41:31 millert Exp $ +.\" $OpenBSD: pkg_create.1,v 1.10 2004/08/06 16:45:51 millert Exp $ .\" .\" FreeBSD install - a package for the installation and maintenance .\" of non-core utilities. @@ -306,17 +306,13 @@ Directories to remove can be shared between packages. If .Ar name does not begin with an @, same as -.Bd -literal -offset -name/ -.Ed +.Dl name/ .It Cm @dirrm Ar directoryname Declare directory .Pa directoryname to be deleted at deinstall time. Deprecated, use -.Bd -literal -offset -directoryname/ -.Ed +.Dl directoryname/ instead, as it handles proper directory creation as well. .It Cm @extra Ar file Declare extra file diff --git a/usr.sbin/pkg_add/pkg_delete.1 b/usr.sbin/pkg_add/pkg_delete.1 index f1041577d6b..189034d9add 100644 --- a/usr.sbin/pkg_add/pkg_delete.1 +++ b/usr.sbin/pkg_add/pkg_delete.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pkg_delete.1,v 1.7 2004/02/25 21:56:12 espie Exp $ +.\" $OpenBSD: pkg_delete.1,v 1.8 2004/08/06 16:45:51 millert Exp $ .\" .\" FreeBSD install - a package for the installation and maintenance .\" of non-core utilities. @@ -82,9 +82,7 @@ proceed even if some package names don't resolve to installed package names. .El .It Fl c Delete extra configuration file, mentioned as -.Bd -literal -@extra file -.Ed +.Dl @extra file in the packing-list. .It Fl q Delete package quickly, do not bother checking md5s before removing files. |