diff options
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/gawk.xml | 2 | ||||
-rw-r--r-- | chapter06/man-db.xml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chapter06/gawk.xml b/chapter06/gawk.xml index 5c157bc03..cb45bb9cd 100644 --- a/chapter06/gawk.xml +++ b/chapter06/gawk.xml @@ -49,7 +49,7 @@ e.g., Gettext testsuite failures. Work around this issue by appending the missing macro definitions to <filename>config.h</filename>:</para> -<screen><userinput>cat >>config.h <<"EOF" +<screen><userinput>cat >> config.h << "EOF" <literal>#define HAVE_LANGINFO_CODESET 1 #define HAVE_LC_MESSAGES 1</literal> EOF</userinput></screen> diff --git a/chapter06/man-db.xml b/chapter06/man-db.xml index 482ae7a17..82b374447 100644 --- a/chapter06/man-db.xml +++ b/chapter06/man-db.xml @@ -57,7 +57,7 @@ sed -i 's,\*_\*,??,' man/Makefile.in</userinput></screen> <para>The third change accounts for programs that Man-DB should be able to find at runtime, but that haven't been installed yet:</para> -<screen><userinput>cat >>include/manconfig.h.in <<"EOF" +<screen><userinput>cat >> include/manconfig.h.in << "EOF" <literal>#define WEB_BROWSER "exec /usr/bin/lynx" #define COL "/usr/bin/col" #define VGRIND "/usr/bin/vgrind" @@ -119,7 +119,7 @@ EOF</userinput></screen> during the system build, for public data, we will not bother with error checking, nor use a non-predictable temporary file name.</para> -<screen><userinput>cat >>convert-mans <<"EOF" +<screen><userinput>cat >> convert-mans << "EOF" <literal>#!/bin/sh -e FROM="$1" TO="$2" |