diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2003-01-11 15:58:55 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2003-01-11 15:58:55 +0000 |
commit | 78ec17a2ddfd2da087cfc5e56d04af276ff531c0 (patch) | |
tree | 890f436ad45a2eb690f784f56cd5fcf9c2662b64 /chapter05/bash-exp.xml | |
parent | 63644a2aaff2438df9571cb7ec4b3e8a6fddd789 (diff) |
Rewrote chapter 5-bash into new format
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2304 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/bash-exp.xml')
-rw-r--r-- | chapter05/bash-exp.xml | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/chapter05/bash-exp.xml b/chapter05/bash-exp.xml deleted file mode 100644 index ba7b375c1..000000000 --- a/chapter05/bash-exp.xml +++ /dev/null @@ -1,32 +0,0 @@ -<sect2> -<title>Command explanations</title> - -<para><userinput>--enable-static-link:</userinput> This configure -option causes bash to be linked statically.</para> - -<para><userinput>--prefix=$LFS/static:</userinput> This configure option -installs all of Bash's files under the $LFS/static directory, which becomes -the /static directory when chroot'ed or reboot'ed into LFS.</para> - -<para><userinput>--with-curses:</userinput> This causes bash to be -linked against the curses library instead of the default termcap -library which is becoming obsolete.</para> - -<para>It is not strictly necessary for the static bash to be linked -against libncurses (it can link against a static termcap for the time -being just fine because we will reinstall Bash in Chapter 6 anyways, -where we will use libncurses), but it's a good test to make sure that -the Ncurses package has been installed properly. If not, you will get in -trouble later on in this chapter when you install the Texinfo package. -That package requires ncurses, and termcap can't reliably be used -there.</para> - -<para>The <userinput>&&</userinput>'s at the end of every line cause -the next command to be executed only if the previous command exits -with a return value of 0 indicating success. In case all of these -commands are copy & pasted on the shell, it is important to ensure -that if ./configure fails, make isn't executed and, likewise, if make -fails, that make install isn't executed, and so forth.</para> - -</sect2> - |