Changeset 1f3f918


Ignore:
Timestamp:
09/21/2006 11:04:36 PM (18 years ago)
Author:
Matthew Burgess <matthew@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 12.2, 12.2-rc1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/loongarch-12.2, xry111/mips64el, xry111/multilib, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
d0d8dc8
Parents:
fc8f960
Message:

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter05/gawk.xml

    rfc8f960 r1f3f918  
    4747    missing macro definitions to <filename>config.h</filename>:</para>
    4848
    49 <screen><userinput>cat &gt;&gt;config.h &lt;&lt;"EOF"
     49<screen><userinput>cat &gt;&gt; config.h &lt;&lt; "EOF"
    5050<literal>#define HAVE_LANGINFO_CODESET 1
    5151#define HAVE_LC_MESSAGES 1</literal>
  • chapter06/gawk.xml

    rfc8f960 r1f3f918  
    5050    missing macro definitions to <filename>config.h</filename>:</para>
    5151
    52 <screen><userinput>cat &gt;&gt;config.h &lt;&lt;"EOF"
     52<screen><userinput>cat &gt;&gt; config.h &lt;&lt; "EOF"
    5353<literal>#define HAVE_LANGINFO_CODESET 1
    5454#define HAVE_LC_MESSAGES 1</literal>
  • chapter06/man-db.xml

    rfc8f960 r1f3f918  
    5858    to find at runtime, but that haven't been installed yet:</para>
    5959
    60 <screen><userinput>cat &gt;&gt;include/manconfig.h.in &lt;&lt;"EOF"
     60<screen><userinput>cat &gt;&gt; include/manconfig.h.in &lt;&lt; "EOF"
    6161<literal>#define WEB_BROWSER "exec /usr/bin/lynx"
    6262#define COL "/usr/bin/col"
     
    120120    checking, nor use a non-predictable temporary file name.</para>
    121121
    122 <screen><userinput>cat &gt;&gt;convert-mans &lt;&lt;"EOF"
     122<screen><userinput>cat &gt;&gt; convert-mans &lt;&lt; "EOF"
    123123<literal>#!/bin/sh -e
    124124FROM="$1"
  • chapter07/symlinks.xml

    rfc8f960 r1f3f918  
    3333    approach, create a file similar to the following:</para>
    3434
    35 <screen role="nodump"><userinput>cat &gt;/etc/udev/rules.d/82-cdrom.rules &lt;&lt; EOF
     35<screen role="nodump"><userinput>cat &gt; /etc/udev/rules.d/82-cdrom.rules &lt;&lt; EOF
    3636<literal>
    3737# Custom CD-ROM symlinks
     
    6565    <para>The second approach yields:</para>
    6666
    67 <screen role="nodump"><userinput>cat &gt;/etc/udev/rules.d/82-cdrom.rules &lt;&lt; EOF
     67<screen role="nodump"><userinput>cat &gt; /etc/udev/rules.d/82-cdrom.rules &lt;&lt; EOF
    6868<literal>
    6969# Custom CD-ROM symlinks
     
    117117    <para>Then write rules that create the symlinks, e.g.:</para>
    118118
    119 <screen role="nodump"><userinput>cat &gt;/etc/udev/rules.d/83-duplicate_devs.rules &lt;&lt; EOF
     119<screen role="nodump"><userinput>cat &gt; /etc/udev/rules.d/83-duplicate_devs.rules &lt;&lt; EOF
    120120<literal>
    121121# Persistent symlinks for webcam and tuner
  • general.ent

    rfc8f960 r1f3f918  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!ENTITY version "SVN-20060921">
    3 <!ENTITY releasedate "September 21, 2006">
     2<!ENTITY version "SVN-20060922">
     3<!ENTITY releasedate "September 22, 2006">
    44<!ENTITY milestone "6.3">
    55<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
Note: See TracChangeset for help on using the changeset viewer.