diff options
author | Thomas Balu Walter <tw@itreff.de> | 2001-03-18 19:30:50 +0000 |
---|---|---|
committer | Thomas Balu Walter <tw@itreff.de> | 2001-03-18 19:30:50 +0000 |
commit | 72033583eb677b863c84eb1454a20ee4ddbcd46e (patch) | |
tree | d3b025a3185f68acc8495744587d827ccb83c56a /chapter05/bash-exp.xml | |
parent | ab8b3526fa47ad4fd098fe6135492c739e0feb4a (diff) |
You
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@334 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/bash-exp.xml')
-rw-r--r-- | chapter05/bash-exp.xml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/chapter05/bash-exp.xml b/chapter05/bash-exp.xml index 57c22ea1e..ce6069d86 100644 --- a/chapter05/bash-exp.xml +++ b/chapter05/bash-exp.xml @@ -9,15 +9,16 @@ option causes Bash to be linked statically <para> <userinput>--prefix=$LFS/usr:</userinput> This configure option installs all of Bash's files under the $LFS/usr directory, which becomes the /usr -directory after you chroot into $LFS or when you reboot the system into LFS. +directory after the user chrooted into $LFS or when he rebooted +the system into LFS. </para> <para> <userinput>--bindir=$LFS/bin:</userinput> This installs the executable files in $LFS/bin. We do this because we want bash to be in /bin, not in -/usr/bin. One reason being: your /usr partition might be on a seperate +/usr/bin. One reason being: the /usr partition might be on a seperate partition which has to be mounted at some point. Before that partition is -mounted you need and will want to have bash available (it will be hard to +mounted a user needs and will want to have bash available (it will be hard to execute the boot scripts without a shell for instance). </para> @@ -44,8 +45,9 @@ possible) as the original Bourne shell. <para> The <userinput>&&</userinput>'s at the end of every line cause the next command only to be executed when the previous command exists -with a return value of 0 indicating success. In case you copy&paste -all of these commands on the shell you want to be ensured that if +with a return value of 0 indicating success. In case all of these +commands are copy&pasted +on the shell is is important to be ensured that if ./configure fails, make isn't being executed and likewise if make fails that make install isn't being executed, and so forth. </para> |