diff options
Diffstat (limited to 'doc/gawk.info')
-rw-r--r-- | doc/gawk.info | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/gawk.info b/doc/gawk.info index ee83333e..0e962583 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -15,7 +15,7 @@ Software Foundation, Inc. This is Edition 4 of `GAWK: Effective AWK Programming: A User's -Guide for GNU Awk', for the 4.0.1 (or later) version of the GNU +Guide for GNU Awk', for the 4.0.2 (or later) version of the GNU implementation of AWK. Permission is granted to copy, distribute and/or modify this document @@ -47,7 +47,7 @@ Software Foundation, Inc. This is Edition 4 of `GAWK: Effective AWK Programming: A User's -Guide for GNU Awk', for the 4.0.1 (or later) version of the GNU +Guide for GNU Awk', for the 4.0.2 (or later) version of the GNU implementation of AWK. Permission is granted to copy, distribute and/or modify this document @@ -25416,7 +25416,7 @@ There are three ways to get GNU software: supported. If you have the `wget' program, you can use a command like the following: - wget http://ftp.gnu.org/gnu/gawk/gawk-4.0.1.tar.gz + wget http://ftp.gnu.org/gnu/gawk/gawk-4.0.2.tar.gz The GNU software archive is mirrored around the world. The up-to-date list of mirror sites is available from the main FSF web site @@ -25435,26 +25435,26 @@ compression programs: `gzip', `bzip2', and `xz'. For simplicity, the rest of these instructions assume you are using the one compressed with the GNU Zip program, `gzip'. - Once you have the distribution (for example, `gawk-4.0.1.tar.gz'), + Once you have the distribution (for example, `gawk-4.0.2.tar.gz'), use `gzip' to expand the file and then use `tar' to extract it. You can use the following pipeline to produce the `gawk' distribution: # Under System V, add 'o' to the tar options - gzip -d -c gawk-4.0.1.tar.gz | tar -xvpf - + gzip -d -c gawk-4.0.2.tar.gz | tar -xvpf - On a system with GNU `tar', you can let `tar' do the decompression for you: - tar -xvpzf gawk-4.0.1.tar.gz + tar -xvpzf gawk-4.0.2.tar.gz -Extracting the archive creates a directory named `gawk-4.0.1' in the +Extracting the archive creates a directory named `gawk-4.0.2' in the current directory. The distribution file name is of the form `gawk-V.R.P.tar.gz'. The V represents the major version of `gawk', the R represents the current release of version V, and the P represents a "patch level", meaning that minor bugs have been fixed in the release. The current patch -level is 1, but when retrieving distributions, you should get the +level is 2, but when retrieving distributions, you should get the version with the highest version, release, and patch level. (Note, however, that patch levels greater than or equal to 70 denote "beta" or nonproduction software; you might not want to retrieve such a version @@ -25648,7 +25648,7 @@ Unix-derived systems, GNU/Linux, BSD-based systems, and the Cygwin environment for MS-Windows. After you have extracted the `gawk' distribution, `cd' to -`gawk-4.0.1'. Like most GNU software, `gawk' is configured +`gawk-4.0.2'. Like most GNU software, `gawk' is configured automatically for your system by running the `configure' program. This program is a Bourne shell script that is generated automatically using GNU `autoconf'. (The `autoconf' software is described fully starting @@ -26058,8 +26058,8 @@ tools, such as Bash, the GNU Compiler Collection (GCC), GNU Make, and other GNU programs. Compilation and installation for Cygwin is the same as for a Unix system: - tar -xvpzf gawk-4.0.1.tar.gz - cd gawk-4.0.1 + tar -xvpzf gawk-4.0.2.tar.gz + cd gawk-4.0.2 ./configure make |