mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-03-06 06:14:47 +00:00
Make the spacing consistent for redirecting to a here-document. Thanks to Peter Ennis for the report.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7797 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
fc8f960e27
commit
1f3f918e63
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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"
|
||||
|
@ -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", \
|
||||
|
@ -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}]" -->
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user