From c6eba1369bc54776e372d4ae4011e297bd05cc0b Mon Sep 17 00:00:00 2001 From: Giorgos Keramidas Date: Sun, 12 May 2002 00:29:59 +0000 Subject: [PATCH] - changed '..' to '.' - replaced with something more appropriate - added missing mark up - Pentium 3 -> Pentium III - added the missing word 'file' Submitted by: Martin Heinen PR: docs/37943 --- .../books/handbook/cutting-edge/chapter.sgml | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml b/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml index 778d72b0bf..031a21f938 100644 --- a/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml +++ b/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml @@ -561,7 +561,7 @@ subscribe cvs-all CTM, on the other hand, does not interactively compare the sources you have with those on the master - archive or otherwise pull them across.. Instead, a script which + archive or otherwise pull them across. Instead, a script which identifies changes in files since its previous run is executed several times a day on the master CTM machine, any detected changes being compressed, stamped with a sequence-number and encoded for @@ -930,7 +930,7 @@ Script done, … &prompt.root; make buildworld - It is now possible to specify a -j option to + It is now possible to specify a option to make which will cause it to spawn several simultaneous processes. This is most useful on multi-CPU machines. However, since much of the compiling process is IO bound rather @@ -962,7 +962,7 @@ Script done, … Many factors influence the build time, but currently a 500 MHz - Pentium 3 with 128 MB of RAM takes about 2 hours to build + Pentium III with 128 MB of RAM takes about 2 hours to build the &os.stable; tree, with no tricks or shortcuts used during the process. A &os.current; tree will take somewhat longer. @@ -1099,7 +1099,7 @@ Script done, … merge the temporary file with the currently installed file, or view the &man.diff.1; results again. - Choosing to delete the temporary will tell &man.mergemaster.8; that we + Choosing to delete the temporary file will tell &man.mergemaster.8; that we wish to keep our current file unchanged, and to delete the one that is new. This option is not the most recommended one, unless you see no reason to change the current file. You can get help at any time by @@ -1418,7 +1418,7 @@ Script done, … There is no easy answer to this one, as it depends on the - nature of the change. For example, if you just ran CVSup, and + nature of the change. For example, if you just ran CVSup, and it has shown the following files as being updated, src/games/cribbage/instr.c @@ -1500,7 +1500,7 @@ Script done, … corners. If you want to live dangerously then make the world, passing - the NOCLEAN definition to make, like + the NOCLEAN definition to make, like this: &prompt.root; make -DNOCLEAN world @@ -1601,11 +1601,11 @@ Building everything.. Also in /etc/make.conf, set - CFLAGS to something like -O - -pipe. The optimization -O2 is much + CFLAGS to something like . The optimization is much slower, and the optimization difference between - -O and -O2 is normally - negligible. -pipe lets the compiler use + and is normally + negligible. lets the compiler use pipes rather than temporary files for communication, which saves disk access (at the expense of memory).