diff options
author | Juergen Kahrs <Juergen.Kahrs@googlemail.com> | 2013-05-16 21:08:20 +0200 |
---|---|---|
committer | Juergen Kahrs <Juergen.Kahrs@googlemail.com> | 2013-05-16 21:08:20 +0200 |
commit | 98ecd5e8c7b6c83b8c794050249b445dfea17334 (patch) | |
tree | bebd47cf502ca7ffcf4f013bf0aa5d6c42339963 /doc/gawktexi.in | |
parent | 57fe811dd036e276abd30eed3aac135df7e362ab (diff) | |
parent | 403350c2b25551c749e2310556ba2f63e271042b (diff) | |
download | egawk-98ecd5e8c7b6c83b8c794050249b445dfea17334.tar.gz egawk-98ecd5e8c7b6c83b8c794050249b445dfea17334.tar.bz2 egawk-98ecd5e8c7b6c83b8c794050249b445dfea17334.zip |
Merge remote-tracking branch 'origin/master' into cmake
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index 40870076..d79093bf 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -20859,7 +20859,7 @@ written out between the fields: @example @c file eg/prog/cut.awk @{ - if (by_fields && suppress && index($0, FS) != 0) + if (by_fields && suppress && index($0, FS) == 0) next for (i = 1; i <= nfields; i++) @{ @@ -31973,8 +31973,15 @@ cd .../path/to/gawkextlib-code @ii{You may have to run this command twice} ./configure --with-gawk=/tmp/newgawk @ii{Configure, point at ``installed'' gawk} make && make check @ii{Build and check that all is OK} +make install @ii{Install the extensions} @end example +If you have installed @command{gawk} in the standard way, then you +will likely not need the @option{--with-gawk} option when configuring +@code{gawkextlib}. You may also need to use the @command{sudo} utility +to install both @command{gawk} and @code{gawkextlib}, depending upon +how your system works. + If you write an extension that you wish to share with other @command{gawk} users, please consider doing so through the @code{gawkextlib} project. |