Changeset c288d97 for chapter05


Ignore:
Timestamp:
02/01/2004 09:48:13 PM (20 years ago)
Author:
Alex Gronenwoud <alex@…>
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, 6.0, 6.1, 6.1.1, 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, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
90e3cb3
Parents:
6da8f0d
Message:

Turning some ./configures into a single line, taking 72 as max-width.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3202 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter05
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter05/binutils-pass1.xml

    r6da8f0d rc288d97  
    3737<para>Now prepare Binutils for compilation:</para>
    3838
    39 <screen><userinput>../&binutils-dir;/configure \
    40 &nbsp;&nbsp;&nbsp;&nbsp;--prefix=/tools --disable-nls</userinput></screen>
     39<screen><userinput>../&binutils-dir;/configure --prefix=/tools --disable-nls</userinput></screen>
    4140
    4241<para>The meaning of the configure options:</para>
  • chapter05/chapter05.xml

    r6da8f0d rc288d97  
    312312work environment we'll create a new user <emphasis>lfs</emphasis> and
    313313use this one during the installation process. As <emphasis>root</emphasis>,
    314 issue the following commands to add the new user:</para>
    315 
    316 <screen><userinput>useradd -s /bin/bash -m -k /dev/null lfs
    317 passwd lfs</userinput></screen>
     314issue the following command to add the new user:</para>
     315
     316<screen><userinput>useradd -s /bin/bash -m -k /dev/null lfs</userinput></screen>
    318317
    319318<para>The meaning of the switches:</para>
     
    328327possible <filename>/etc/skel</filename> being copied into it.</para></listitem>
    329328</itemizedlist>
     329
     330<para>If you want to be able to log in as <emphasis>lfs</emphasis>, then give
     331this new user a password:</para>
     332
     333<screen><userinput>passwd lfs</userinput></screen>
    330334
    331335<para>Now grant this new user <emphasis>lfs</emphasis> full access to
  • chapter05/glibc.xml

    r6da8f0d rc288d97  
    3333<screen><userinput>../&glibc-dir;/configure --prefix=/tools \
    3434&nbsp;&nbsp;&nbsp;&nbsp;--disable-profile --enable-add-ons=linuxthreads \
    35 &nbsp;&nbsp;&nbsp;&nbsp;--with-headers=/tools/include \
    36 &nbsp;&nbsp;&nbsp;&nbsp;--with-binutils=/tools/bin \
     35&nbsp;&nbsp;&nbsp;&nbsp;--with-binutils=/tools/bin --with-headers=/tools/include \
    3736&nbsp;&nbsp;&nbsp;&nbsp;--without-gd --without-cvs</userinput></screen>
    3837
  • chapter05/perl.xml

    r6da8f0d rc288d97  
    1818<screen><userinput>patch -Np1 -i ../&perl-libc-patch;</userinput></screen>
    1919
    20 <para>Now prepare Perl for compilation:</para>
     20<para>Now prepare Perl for compilation (make sure to get the 'IO Fcntl'
     21right, they are all letters):</para>
    2122
    2223<screen><userinput>./configure.gnu --prefix=/tools -Dstatic_ext='IO Fcntl'</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.