diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2008-06-22 20:54:52 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2008-06-22 20:54:52 +0000 |
commit | 3300e58cf25813f95d5f10ed3b8b2ab76389841c (patch) | |
tree | 67d8faa0552a91daf0b7dc1a4529089d1291913f /share | |
parent | d05be9f09390ae95c4819160d6a54157ded16876 (diff) |
As discussed on ICB, do not invoke make with several targets to make
sure nothing blows up
ok krw@ espie@ jmc@ johan@ (who came up with the same diff)
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man8/release.8 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man8/release.8 b/share/man/man8/release.8 index face3d1bc2b..9c31ba664f0 100644 --- a/share/man/man8/release.8 +++ b/share/man/man8/release.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: release.8,v 1.54 2008/04/23 18:50:24 jmc Exp $ +.\" $OpenBSD: release.8,v 1.55 2008/06/22 20:54:51 ajacoutot Exp $ .\" .\" Copyright (c) 2000 Marco S. Hyman .\" @@ -9,7 +9,7 @@ .\" LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS .\" FOR A PARTICULAR PURPOSE. .\" -.Dd $Mdocdate: April 23 2008 $ +.Dd $Mdocdate: June 22 2008 $ .Dt RELEASE 8 .Os .Sh NAME @@ -155,7 +155,7 @@ Build the kernel compilation directory and compile the kernel: .Bd -literal -offset indent $ config ${NAME} $ cd ../compile/${NAME} -$ make clean depend && make +$ make clean && make depend && make .Ed .Pp (In this instance @@ -267,8 +267,8 @@ You must be root to create a release: .Pp Create the special tools needed to build the release: .Bd -literal -offset indent -# cd /usr/src/distrib/crunch && make obj depend \e - && make all install +# cd /usr/src/distrib/crunch && make obj && make depend \e + && make all && make install # export DESTDIR=your-destdir; export RELEASEDIR=your-releasedir # test -d ${DESTDIR} && mv ${DESTDIR} ${DESTDIR}- && \e rm -rf ${DESTDIR}- & |