diff options
author | anton <anton@cvs.openbsd.org> | 2017-12-22 21:19:11 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2017-12-22 21:19:11 +0000 |
commit | d40e6e350bf6d2a3166232d858dabe66ad2fd9a7 (patch) | |
tree | a77b292e223cbfef70571374e1ba202564121cf6 | |
parent | f6919dcfd3637b4ade40803d224c9c760f673749 (diff) |
Since export accepts several variables, put them on a single line; ok tb@
-rw-r--r-- | share/man/man8/release.8 | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/share/man/man8/release.8 b/share/man/man8/release.8 index 7ca4d84416c..7fba99a30db 100644 --- a/share/man/man8/release.8 +++ b/share/man/man8/release.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: release.8,v 1.89 2017/06/05 22:27:58 tb Exp $ +.\" $OpenBSD: release.8,v 1.90 2017/12/22 21:19:10 anton Exp $ .\" .\" Copyright (c) 2000 Marco S. Hyman .\" Copyright (c) 2016 Theo Buehler <tb@openbsd.org> @@ -10,7 +10,7 @@ .\" LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS .\" FOR A PARTICULAR PURPOSE. .\" -.Dd $Mdocdate: June 5 2017 $ +.Dd $Mdocdate: December 22 2017 $ .Dt RELEASE 8 .Os .Sh NAME @@ -202,7 +202,7 @@ is also used and must not be configured. .Pp Make the release and check the contents of the release tarballs: .Bd -literal -offset indent -# export DESTDIR=your-destdir; export RELEASEDIR=your-releasedir +# export DESTDIR=your-destdir RELEASEDIR=your-releasedir # cd /usr/src/etc && make release # cd /usr/src/distrib/sets && sh checkflist # unset RELEASEDIR DESTDIR @@ -240,7 +240,7 @@ will be removed. .Pp The steps to build and validate the Xenocara release are: .Bd -literal -offset indent -# export DESTDIR=your-destdir; export RELEASEDIR=your-releasedir +# export DESTDIR=your-destdir RELEASEDIR=your-releasedir # make release # make checkdist # unset RELEASEDIR DESTDIR @@ -263,8 +263,7 @@ and are suitable for installs without network connectivity. They contain the tarballs and ports built in the previous steps. .Bd -literal -offset indent -# export RELDIR=your-releasedir -# export RELXDIR=your-xenocara-releasedir +# export RELDIR=your-releasedir RELXDIR=your-xenocara-releasedir # cd /usr/src/distrib/$(machine)/iso && make # make install .Ed |