Changeset e2bd9bf


Ignore:
Timestamp:
09/17/2003 06:06:39 PM (21 years ago)
Author:
Jeremy Utley <jeremy@…>
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_0, 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:
552a690
Parents:
d1391f0
Message:

Merged the bash --login and set +h directives

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rd1391f0 re2bd9bf  
    9595</para></listitem>
    9696
     97<listitem><para>September 17th, 2003 [jeremy]: Chapter 6 - changed 2 of the
     98occurances of exec bash --login to include the +h directive. </para></listitem>
     99
    97100<listitem><para>September 17th, 2003 [greg]: Chapters 5 and 6 - Locking in
    98101Glibc and Re-adjusting the toolchain: Do "make -C ld install" instead of "make
  • chapter06/bash-inst.xml

    rd1391f0 re2bd9bf  
    3030<para>And reload the newly compiled <userinput>bash</userinput> program:</para>
    3131
    32 <para><screen><userinput>exec /bin/bash --login
    33 set +h</userinput></screen></para>
     32<para><screen><userinput>exec /bin/bash +h --login</userinput></screen></para>
    3433
    3534</sect2>
  • chapter06/chroot.xml

    rd1391f0 re2bd9bf  
    2727such as CFLAGS or CXXFLAGS, this is a good place to set them again.</para>
    2828
     29<para>Also note the use of the set +h directive.  This tells bash to not use
     30it's internal path hashing. Without this directive, bash will remember paths
     31to binaries.  Since as we go thru chapter 6, we want to use our newly compiled
     32binaries as soon as they are installed, we turn off this function.</para>
     33
    2934<para>From this point on there's no need to use the LFS variable anymore,
    3035because everything you do will be restricted to the LFS file system -- since
  • chapter06/pwdgroup.xml

    rd1391f0 re2bd9bf  
    5252the <quote>I have no name!</quote> prompt.</para>
    5353
    54 <para><screen><userinput>exec /tools/bin/bash --login
    55 set +h</userinput></screen></para>
     54<para><screen><userinput>exec /tools/bin/bash +h --login </userinput></screen></para>
    5655
    5756
Note: See TracChangeset for help on using the changeset viewer.