diff options
-rw-r--r-- | chapter05/gawk.xml | 2 | ||||
-rw-r--r-- | chapter06/gawk.xml | 2 | ||||
-rw-r--r-- | chapter06/man-db.xml | 4 | ||||
-rw-r--r-- | chapter07/symlinks.xml | 6 | ||||
-rw-r--r-- | general.ent | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/chapter05/gawk.xml b/chapter05/gawk.xml index 8a3ba4d92..87a95f48e 100644 --- a/chapter05/gawk.xml +++ b/chapter05/gawk.xml @@ -46,7 +46,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/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" diff --git a/chapter07/symlinks.xml b/chapter07/symlinks.xml index 4775403ae..d19ce4155 100644 --- a/chapter07/symlinks.xml +++ b/chapter07/symlinks.xml @@ -32,7 +32,7 @@ location of the device on the bus. If you are going to use the first approach, create a file similar to the following:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/82-cdrom.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/82-cdrom.rules << EOF <literal> # Custom CD-ROM symlinks SUBSYSTEM=="block", ENV{ID_MODEL}=="SAMSUNG_CD-ROM_SC-148F", \ @@ -64,7 +64,7 @@ EOF</userinput></screen> <para>The second approach yields:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/82-cdrom.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/82-cdrom.rules << EOF <literal> # Custom CD-ROM symlinks SUBSYSTEM=="block", ENV{ID_TYPE}=="cd", \ @@ -116,7 +116,7 @@ EOF</userinput></screen> <para>Then write rules that create the symlinks, e.g.:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/83-duplicate_devs.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/83-duplicate_devs.rules << EOF <literal> # Persistent symlinks for webcam and tuner KERNEL=="video*", SYSFS{idProduct}=="1910", SYSFS{idVendor}=="0d81", \ diff --git a/general.ent b/general.ent index 8e56fb497..52284f46a 100644 --- a/general.ent +++ b/general.ent @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!ENTITY version "SVN-20060921"> -<!ENTITY releasedate "September 21, 2006"> +<!ENTITY version "SVN-20060922"> +<!ENTITY releasedate "September 22, 2006"> <!ENTITY milestone "6.3"> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> |